diff options
Diffstat (limited to 'usr/src/lib/efcode/fcdriver/upload.c')
-rw-r--r-- | usr/src/lib/efcode/fcdriver/upload.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr/src/lib/efcode/fcdriver/upload.c b/usr/src/lib/efcode/fcdriver/upload.c index 14b8989295..18db29fe55 100644 --- a/usr/src/lib/efcode/fcdriver/upload.c +++ b/usr/src/lib/efcode/fcdriver/upload.c @@ -24,8 +24,6 @@ * All rights reserved. */ -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> @@ -157,10 +155,9 @@ upload_nodes(fcode_env_t *env) void validate_nodes(fcode_env_t *env) { - int error; common_data_t *cdp = env->private; - error = ioctl(cdp->fcode_fd, FC_VALIDATE); + (void) ioctl(cdp->fcode_fd, FC_VALIDATE); } #pragma init(_init) |