fix hex parsing of bmgr

This commit is contained in:
Christian Sonntag
2010-03-04 14:59:04 -08:00
parent 4a3c3b23d0
commit 485c3a16ce

View File

@@ -311,7 +311,7 @@ public final class Bmgr {
doRestorePackage(arg);
} else {
try {
long token = Long.parseLong(nextArg(), 16);
long token = Long.parseLong(arg, 16);
doRestoreAll(token);
} catch (NumberFormatException e) {
showUsage();