From: Joseph C. Lehner Date: Sat, 30 Jan 2016 07:02:37 +0000 (+0200) Subject: Fix timeout max X-Git-Tag: v0.9~79 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6058284b378046367bf7be6339dec728477b0a9e;p=oweals%2Fnmrpflash.git Fix timeout max --- diff --git a/main.c b/main.c index 4d20411..f352ef7 100644 --- a/main.c +++ b/main.c @@ -70,7 +70,7 @@ int main(int argc, char **argv) opterr = 0; while ((c = getopt(argc, argv, "a:f:i:m:M:p:t:T:hV")) != -1) { - max = 0xffffffff; + max = 0x7fffffff; switch (c) { case 'a': args.ipaddr = optarg;