jtag: Don't abort for invalid command line options

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@860 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Kolja Waschk 17 years ago
parent 1423ab60e1
commit dd055b72d8

@ -1,5 +1,6 @@
2007-12-16 Kolja Waschk <kawk>
* jtag.c: Don't abort on invalid command line options
* configure.ac: Reorganized the libusb/libftdi detection.
* data/MANUFACTURERS: Change 11110000111 code to point to
"ARM" instead of Sharp to stop misdetection of other

@ -382,11 +382,9 @@ main( int argc, const char **argv )
break;
case 'h':
default:
help = 1;
break;
default:
abort ();
}
}

Loading…
Cancel
Save