Changeset 032dfff0fd8dddb5ce960804574c980a3b8dfb03
- Timestamp:
- 07/21/11 14:18:28
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1311257908 -0400
- git-parent:
[9068bdba630f6fa9cc3b37bba543f94967d6532e]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1311257908 -0400
- Message:
cast to prevent warning
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbecc5b1 |
r032dfff |
|
| 997 | 997 | } |
|---|
| 998 | 998 | input = lua_tolstring(L, inputidx, &inlen); |
|---|
| 999 | | lua_pushnumber(L, (double)crc32(start, input, inlen)); |
|---|
| | 999 | lua_pushnumber(L, (double)crc32(start, (Bytef *)input, inlen)); |
|---|
| 1000 | 1000 | return 1; |
|---|
| 1001 | 1001 | } |
|---|