Date: Tue, 8 Jul 2014 08:11:52 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268385 - head/tools/regression/file/flock Message-ID: <201407080811.s688Bq6Z019098@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Tue Jul 8 08:11:52 2014 New Revision: 268385 URL: http://svnweb.freebsd.org/changeset/base/268385 Log: Make this compilable on latest Linux'es without warnings. Sponsored by: The FreeBSD Foundation MFC after: 1 week Modified: head/tools/regression/file/flock/flock.c Modified: head/tools/regression/file/flock/flock.c ============================================================================== --- head/tools/regression/file/flock/flock.c Tue Jul 8 08:10:15 2014 (r268384) +++ head/tools/regression/file/flock/flock.c Tue Jul 8 08:11:52 2014 (r268385) @@ -27,6 +27,7 @@ * $FreeBSD$ */ +#include <sys/file.h> #include <sys/time.h> #ifdef __FreeBSD__ #include <sys/mount.h> @@ -39,6 +40,7 @@ #include <fcntl.h> #include <pthread.h> #include <signal.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -51,9 +53,13 @@ #include <sys/cdefs.h> #else #ifndef __unused +#ifdef __GNUC__ +#define __unused __attribute__((__unused__)) +#else #define __unused #endif #endif +#endif int verbose = 0; @@ -1329,7 +1335,6 @@ test15(int fd, __unused int argc, const */ int pid; int pfd[2]; - int fd2; struct flock fl; char ch; int res; @@ -1366,7 +1371,7 @@ test15(int fd, __unused int argc, const if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); - fd2 = dup(fd); + (void)dup(fd); if (flock(fd, LOCK_SH) < 0) err(1, "flock shared");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407080811.s688Bq6Z019098>