diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-29 14:52:58 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-29 14:52:58 -0800 |
commit | e8746d343afbe32f17a4652c1da59aa6677cd871 (patch) | |
tree | 18749cfbb1f0f9ab78208362ace705586228b5cd /src | |
parent | bf2b465c022dfafa47ab485a6d4dc666cf951f26 (diff) |
remove obsolete sig param to sign/unSign
Diffstat (limited to 'src')
-rw-r--r-- | src/runtime.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime.js b/src/runtime.js index 4fcca56b..a9265e70 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -565,7 +565,7 @@ function getRuntime() { // Converts a value we have as signed, into an unsigned value. For // example, -1 in int32 would be a very large number as unsigned. -function unSign(value, bits, ignore, sig) { +function unSign(value, bits, ignore) { if (value >= 0) { return value; } @@ -578,7 +578,7 @@ function unSign(value, bits, ignore, sig) { // Converts a value we have as unsigned, into a signed value. For // example, 200 in a uint8 would be a negative number. -function reSign(value, bits, ignore, sig) { +function reSign(value, bits, ignore) { if (value <= 0) { return value; } |