diff options
author | Toomas Soome <tsoome@me.com> | 2018-08-08 11:55:58 +0300 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2018-08-09 11:06:46 -0400 |
commit | a942f1f5f0eafb4e2a9cf5d6cff385b7830676e6 (patch) | |
tree | bbbf09340aa632bc56e2c0f107b9582c4832830f | |
parent | 567af71db40b696d77b6f0112d8cb20c4dc3ad93 (diff) | |
download | illumos-joyent-a942f1f5f0eafb4e2a9cf5d6cff385b7830676e6.tar.gz |
9715 libstand: gzipfs unused variable
Reviewed by: Jason King <jason.king@joyent.com>
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/boot/lib/libstand/gzipfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/boot/lib/libstand/gzipfs.c b/usr/src/boot/lib/libstand/gzipfs.c index 3d7692e597..a658f90755 100644 --- a/usr/src/boot/lib/libstand/gzipfs.c +++ b/usr/src/boot/lib/libstand/gzipfs.c @@ -325,7 +325,7 @@ static int zf_stat(struct open_file *f, struct stat *sb) { struct z_file *zf = (struct z_file *)f->f_fsdata; - int result, res; + int result; off_t pos1, pos2; uint32_t size; |