diff options
Diffstat (limited to '')
| -rw-r--r-- | lobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -87,7 +87,7 @@ lu_byte luaO_codeparam (unsigned int p) { | |||
| 87 | ** overflow, so we check which order is best. | 87 | ** overflow, so we check which order is best. |
| 88 | */ | 88 | */ |
| 89 | l_mem luaO_applyparam (lu_byte p, l_mem x) { | 89 | l_mem luaO_applyparam (lu_byte p, l_mem x) { |
| 90 | unsigned int m = p & 0xF; /* mantissa */ | 90 | int m = p & 0xF; /* mantissa */ |
| 91 | int e = (p >> 4); /* exponent */ | 91 | int e = (p >> 4); /* exponent */ |
| 92 | if (e > 0) { /* normalized? */ | 92 | if (e > 0) { /* normalized? */ |
| 93 | e--; /* correct exponent */ | 93 | e--; /* correct exponent */ |
