HardenedBSD/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
debug.h
growfs.8
growfs.c After r232548, clang complains about the apparent '=-' operator (a 2012-03-12 11:15:44 +00:00
Makefile