Use unsigned int instead of uint because uint is already in use on OS X.

This commit is contained in:
Tobias Markmann 2008-11-28 19:24:08 +01:00
parent 0df2b3f0c5
commit a718775bd4

View file

@ -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;