Merge "Use the getopt function in compliance with the standard."

This commit is contained in:
Colin Cross 2014-03-05 01:39:56 +00:00 committed by Gerrit Code Review
commit 87a56eb6cc

View file

@ -35,7 +35,7 @@ int main(int argc, char *argv[])
c = getopt(argc, argv, "p");
if (c == EOF) {
if (c == -1) {
break;
}