From 12d8d27cdd9f0cbae548d783255cc38ca7f258fb Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 1 Sep 1999 08:54:05 +0000 Subject: [PATCH] fixed a bug with long options: --pretty had code 'h' as had help git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1157 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/Decompiler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jode/jode/Decompiler.java b/jode/jode/Decompiler.java index 77d4cce..89b85c8 100644 --- a/jode/jode/Decompiler.java +++ b/jode/jode/Decompiler.java @@ -58,8 +58,8 @@ public class Decompiler { OPTION_LVT | OPTION_INNER | OPTION_ANON | OPTION_DECRYPT | OPTION_VERIFY | OPTION_CONTRAFO; - private static final int OPTION_START=100; - private static final int OPTION_END =200; + private static final int OPTION_START=0x10000; + private static final int OPTION_END =0x20000; private static final LongOpt[] longOptions = new LongOpt[] { new LongOpt("cp", LongOpt.REQUIRED_ARGUMENT, null, 'c'), new LongOpt("classpath", LongOpt.REQUIRED_ARGUMENT, null, 'c'),