diff options
| author | doug <> | 2015-06-27 22:42:02 +0000 |
|---|---|---|
| committer | doug <> | 2015-06-27 22:42:02 +0000 |
| commit | b1e0a2287902704dfe165a7ba7d1fe23b22bf25f (patch) | |
| tree | f07bd4c63266de218a647e6e2be1380d66d9641a /src/lib/libcrypto/crypto | |
| parent | 3af2c9be3406b2ad8bbf0bd753101ef67f99b275 (diff) | |
| download | openbsd-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/Makefile | 4 |
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 | ||
| 3 | LIB= crypto | 3 | LIB= crypto |
| 4 | 4 | ||
| 5 | SSL_SRC= ${.CURDIR}/../../libssl/src | 5 | SSL_SRC= ${.CURDIR}/../../libssl/src |
| 6 | LCRYPTO_SRC= ${SSL_SRC}/crypto | 6 | LCRYPTO_SRC= ${SSL_SRC}/crypto |
| 7 | 7 | ||
| 8 | CFLAGS+= -Wall -Werror | 8 | CFLAGS+= -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) |
