K 10 svn:author V 3 dim K 8 svn:date V 27 2012-03-12T11:15:44.201317Z K 7 svn:log V 337 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. END