From 2ad9757f455f4fe6e9d628cf1acff4dc07ce6098 Mon Sep 17 00:00:00 2001 From: doug <> Date: Sat, 27 Jun 2015 22:42:02 +0000 Subject: [PATCH] Fix pointer to unsigned long conversion. bcook@ notes that this check really only impacted 64-bit Windows. Also, changed the check to be unsigned for consistency. ok bcook@ --- src/lib/libcrypto/crypto/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile index d523e802..c1905516 100644 --- a/src/lib/libcrypto/crypto/Makefile +++ b/src/lib/libcrypto/crypto/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.58 2015/06/20 01:07:24 doug Exp $ +# $OpenBSD: Makefile,v 1.59 2015/06/27 22:42:02 doug Exp $ LIB= crypto SSL_SRC= ${.CURDIR}/../../libssl/src LCRYPTO_SRC= ${SSL_SRC}/crypto -CFLAGS+= -Wall -Werror +CFLAGS+= -Wall -Wundef -Werror .include # for 'NOPIC' definition .if !defined(NOPIC)