* minidumper.cc (minidump): Fix -t option argument handling.

This commit is contained in:
Jon TURNEY 2014-02-23 11:34:31 +00:00
parent 7cb7f645d5
commit bdcad00bdf
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-02-23 Jon TURNEY <jon.turney@dronecode.org.uk>
* minidumper.cc (minidump): Fix -t option argument handling.
2014-02-07 Jon TURNEY <jon.turney@dronecode.org.uk> 2014-02-07 Jon TURNEY <jon.turney@dronecode.org.uk>
* minidumper.cc: New file. * minidumper.cc: New file.

View File

@ -142,7 +142,7 @@ struct option longopts[] = {
{"version", no_argument, 0, 'V'}, {"version", no_argument, 0, 'V'},
{0, no_argument, NULL, 0} {0, no_argument, NULL, 0}
}; };
const char *opts = "tndhqV"; const char *opts = "t:ndhqV";
static void static void
print_version () print_version ()