Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kengonakajima/lua-msgpack-native
Browse files Browse the repository at this point in the history
  • Loading branch information
kengonakajima committed May 16, 2012
2 parents f1520ab + 5966600 commit 8d103c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mp.c
Expand Up @@ -471,7 +471,7 @@ static void mprbuf_unpack_anytype( mprbuf_t *b, lua_State *L ) {
break;
case 0xd0: // 8bit neg int
if(mprbuf_left(b)>=1){
lua_pushnumber(L, (char) s[0] );
lua_pushnumber(L, (signed char) s[0] );
b->ofs += 1;
return;
}
Expand Down

0 comments on commit 8d103c0

Please sign in to comment.