From 77e4315a57cde4854d69b2f0129c0fde8a6bf446 Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Mon, 8 Aug 2011 16:13:53 -0700 Subject: [PATCH] binpac: Fixing compiler warning --- tools/binpac/lib/binpac.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binpac/lib/binpac.h.in b/tools/binpac/lib/binpac.h.in index eaef8e7fcd..16af8a18c5 100644 --- a/tools/binpac/lib/binpac.h.in +++ b/tools/binpac/lib/binpac.h.in @@ -40,7 +40,7 @@ typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef unsigned long long uint64; -typedef void *nullptr; +typedef void *nulptr; typedef void *voidptr; typedef uint8 *byteptr; typedef const uint8 *const_byteptr;