Minor changes to C files (to prevent compiler warnings)

This commit is contained in:
Waqas Hussain 2008-11-27 21:47:13 +05:00
parent a153b3c267
commit 2fdb13c54d
2 changed files with 9 additions and 5 deletions

View file

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