freebsd-dev/sbin/growfs
Dimitry Andric 8f061f61db After r232548, clang complains about the apparent '=-' operator (a
left-over from ancient C times, and a frequent typo) in growfs.c:

sbin/growfs/growfs.c:1550:8: error: use of unary operator that may be intended as compound assignment (-=) [-Werror]
        blkno =- 1;
              ^~

Use 'blkno = -1' instead, to silence the error.
2012-03-12 11:15:44 +00:00
..
debug.c Make growfs(8) mostly style compliant. No functional changes, 2012-03-05 16:37:51 +00:00
debug.h Parenthesised string literals are invalid in initialisers for character arrays. 2004-07-06 17:48:34 +00:00
growfs.8 Revert the mechanical change from 'file system' to 'filesystem', committed 2011-06-28 19:59:46 +00:00
growfs.c After r232548, clang complains about the apparent '=-' operator (a 2012-03-12 11:15:44 +00:00
Makefile Switch the default WARNS level for sbin/ to 6. 2009-10-19 16:00:24 +00:00