From a718775bd40db918564a31e90f4c17a98a4cecfc Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Fri, 28 Nov 2008 19:24:08 +0100 Subject: Use unsigned int instead of uint because uint is already in use on OS X. --- util-src/encodings.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'util-src/encodings.c') diff --git a/util-src/encodings.c b/util-src/encodings.c index 13706a89..5fe2c805 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -14,12 +14,10 @@ /***************** BASE64 *****************/ -#define uint unsigned int - static const char code[]= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; -static void base64_encode(luaL_Buffer *b, uint c1, uint c2, uint c3, int n) +static void base64_encode(luaL_Buffer *b, unsigned int c1, unsigned int c2, unsigned int c3, int n) { unsigned long tuple=c3+256UL*(c2+256UL*c1); int i; -- cgit v1.2.3