mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Minor changes to C files (to prevent compiler warnings)
This commit is contained in:
parent
a153b3c267
commit
2fdb13c54d
2 changed files with 9 additions and 5 deletions
|
@ -26,7 +26,7 @@ static int myFunc(lua_State *L) { \
|
|||
int hex_out = lua_toboolean(L, 2); \
|
||||
char hash[size]; \
|
||||
char result[size*2]; \
|
||||
func(s, len, hash); \
|
||||
func((const unsigned char*)s, len, (unsigned char*)hash); \
|
||||
if (hex_out) { \
|
||||
toHex(hash, size, result); \
|
||||
lua_pushlstring(L, result, size*2); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue