diff options
author | adrian <adrian@FreeBSD.org> | 2015-08-03 05:59:30 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-08-03 05:59:30 +0000 |
commit | a01e37a02773166b6dfcb7f16a13db1fc78d283d (patch) | |
tree | 1575f388f8478eed21f95a20498260dff26d4856 | |
parent | 58a2b7b1419a198457841311eb13965e25ea8306 (diff) | |
download | FreeBSD-src-a01e37a02773166b6dfcb7f16a13db1fc78d283d.zip FreeBSD-src-a01e37a02773166b6dfcb7f16a13db1fc78d283d.tar.gz |
Actually set quiet to something.
/usr/home/adrian/work/freebsd/head-embedded-2/src/usr.sbin/pw/pw_user.c: In function 'pw_user_next':
/usr/home/adrian/work/freebsd/head-embedded-2/src/usr.sbin/pw/pw_user.c:680: warning: statement with no effect
-rw-r--r-- | usr.sbin/pw/pw_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index 33968ee..f1207e0 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/pw/pw_user.c @@ -677,7 +677,7 @@ pw_user_next(int argc, char **argv, char *name __unused) cfg = optarg; break; case 'q': - quiet; + quiet = true; break; } } |