Browse Source

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@
OPENBSD_5_8
doug 9 years ago
parent
commit
2ad9757f45
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib/libcrypto/crypto/Makefile

+ 2
- 2
src/lib/libcrypto/crypto/Makefile View File

@ -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 LIB= crypto
SSL_SRC= ${.CURDIR}/../../libssl/src SSL_SRC= ${.CURDIR}/../../libssl/src
LCRYPTO_SRC= ${SSL_SRC}/crypto LCRYPTO_SRC= ${SSL_SRC}/crypto
CFLAGS+= -Wall -Werror
CFLAGS+= -Wall -Wundef -Werror
.include <bsd.own.mk> # for 'NOPIC' definition .include <bsd.own.mk> # for 'NOPIC' definition
.if !defined(NOPIC) .if !defined(NOPIC)


Loading…
Cancel
Save