diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2008-05-15 19:00:03 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2008-05-15 19:00:03 +0000 |
commit | d35a433ba50c5edc5ee1e5f646428209ec1e7800 (patch) | |
tree | 08d63ac326d602d1700f700c93fd6067681864ad /usr.bin/tcpbench/Makefile | |
parent | 411a101864362379045788e630dc06389422f4fc (diff) |
fix uninitialised variable; from ray@
Diffstat (limited to 'usr.bin/tcpbench/Makefile')
-rw-r--r-- | usr.bin/tcpbench/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tcpbench/Makefile b/usr.bin/tcpbench/Makefile index b3242e9e047..5e6acea0f46 100644 --- a/usr.bin/tcpbench/Makefile +++ b/usr.bin/tcpbench/Makefile @@ -3,7 +3,7 @@ MAN= tcpbench.1 CDIAGFLAGS= -Wall #CDIAGFLAGS+= -Werror CDIAGFLAGS+= -Wpointer-arith -CDIAGFLAGS+= -Wno-uninitialized +CDIAGFLAGS+= -Wuninitialized CDIAGFLAGS+= -Wstrict-prototypes CDIAGFLAGS+= -Wmissing-prototypes CDIAGFLAGS+= -Wunused |