mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Use unsigned int instead of uint because uint is already in use on OS X.
This commit is contained in:
parent
0df2b3f0c5
commit
a718775bd4
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue