1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-21 08:15:46 +01:00

explicitly specify the radix when parsing the arg to formatBytes()

This commit is contained in:
Doug Kearns
2008-06-03 15:22:47 +00:00
parent ff132570d3
commit 3157772347
2 changed files with 2 additions and 2 deletions

View File

@@ -478,7 +478,7 @@ liberator.Options = function () //{{{
break;
case "number":
value = parseInt(value);
value = parseInt(value); // deduce radix
if (isNaN(value))
{