summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto
diff options
context:
space:
mode:
authordoug <>2015-06-27 22:42:02 +0000
committerdoug <>2015-06-27 22:42:02 +0000
commitb1e0a2287902704dfe165a7ba7d1fe23b22bf25f (patch)
treef07bd4c63266de218a647e6e2be1380d66d9641a /src/lib/libcrypto/crypto
parent3af2c9be3406b2ad8bbf0bd753101ef67f99b275 (diff)
downloadopenbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.tar.gz
openbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.tar.bz2
openbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.zip
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@
Diffstat (limited to 'src/lib/libcrypto/crypto')
-rw-r--r--src/lib/libcrypto/crypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile
index d523e8029d..c1905516c2 100644
--- a/src/lib/libcrypto/crypto/Makefile
+++ b/src/lib/libcrypto/crypto/Makefile
@@ -1,11 +1,11 @@
1# $OpenBSD: Makefile,v 1.58 2015/06/20 01:07:24 doug Exp $ 1# $OpenBSD: Makefile,v 1.59 2015/06/27 22:42:02 doug Exp $
2 2
3LIB= crypto 3LIB= crypto
4 4
5SSL_SRC= ${.CURDIR}/../../libssl/src 5SSL_SRC= ${.CURDIR}/../../libssl/src
6LCRYPTO_SRC= ${SSL_SRC}/crypto 6LCRYPTO_SRC= ${SSL_SRC}/crypto
7 7
8CFLAGS+= -Wall -Werror 8CFLAGS+= -Wall -Wundef -Werror
9 9
10.include <bsd.own.mk> # for 'NOPIC' definition 10.include <bsd.own.mk> # for 'NOPIC' definition
11.if !defined(NOPIC) 11.if !defined(NOPIC)