summaryrefslogtreecommitdiffstats
path: root/usr.sbin/fdformat
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2005-01-08 15:46:06 +0000
committerdelphij <delphij@FreeBSD.org>2005-01-08 15:46:06 +0000
commit049c85627c463b094dc6fafd968dac0fc27d2d36 (patch)
treee7b7f4702f5752e13e6128d82e58a62e3c2805f7 /usr.sbin/fdformat
parent99669f6c435eaf7942060ee1fa6c2da7de5a85d6 (diff)
downloadFreeBSD-src-049c85627c463b094dc6fafd968dac0fc27d2d36.zip
FreeBSD-src-049c85627c463b094dc6fafd968dac0fc27d2d36.tar.gz
Cleanup usr.sbin/fd* so they can compile under WARNS=6.
fdcontrol/fdcontrol.c: - Add const constraint to an intermediate value which is not supposed to be changed elsewhere. fdread/fdread.c: - Use _devname in favor of devname to avoid name conflicit. - -1 is less than any positive number so in order to get the block to function, we should get the block a little earlier. - Cast to remove signed when we are sure that a return value is positive, or is compared with an positive number (tracknumber of a floppy disk is not likely to have UINT_MAX/2 anyway) fdread/fdutil.c: - Use more specific initializer fdwrite/fdwrite.c: - Use static on format_track since it's not referenced in other places. - Use const char* to represent string constant. Bump WARNS accordingly.
Diffstat (limited to 'usr.sbin/fdformat')
-rw-r--r--usr.sbin/fdformat/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/fdformat/Makefile b/usr.sbin/fdformat/Makefile
index 40ca9a7..a172811 100644
--- a/usr.sbin/fdformat/Makefile
+++ b/usr.sbin/fdformat/Makefile
@@ -5,7 +5,7 @@
PROG= fdformat
SRCS= fdformat.c fdutil.c
-WARNS?= 2
+WARNS?= 6
CFLAGS+= -I${.CURDIR}/../fdread
.if ${MACHINE} == "pc98"
OpenPOWER on IntegriCloud