diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-15 16:39:21 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-15 16:39:21 +0000 |
commit | f88347846e7a8f9ba5ff8c37ce15575d9f4fff08 (patch) | |
tree | 7593ca87ed0ccd0e2873a6c357c6cfc3cad3f3a9 /distrib | |
parent | abd48148ace0480aeaa124b3e057cb90f230040c (diff) |
Replace bitfield_get() and bitfield_set() abstraction with simple masking
operations since all the uses but 1 are for 1 bit fields. No functional
change intended.
Unhook bitfield.c from build.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/pdisk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/special/pdisk/Makefile b/distrib/special/pdisk/Makefile index 1a327fcd222..7cf2ba8d3ba 100644 --- a/distrib/special/pdisk/Makefile +++ b/distrib/special/pdisk/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 2016/01/14 04:17:40 krw Exp $ +# $Id: Makefile,v 1.5 2016/01/15 16:39:20 krw Exp $ .if ${MACHINE} == "macppc" PROG= pdisk @@ -6,7 +6,7 @@ LDADD= -lutil DPADD= ${LIBUTIL} CFLAGS+=-Wall -SRCS= bitfield.c convert.c deblock_media.c dump.c \ +SRCS= convert.c deblock_media.c dump.c \ file_media.c io.c media.c partition_map.c \ pdisk.c validate.c |