# HG changeset patch # User Matti Hamalainen # Date 1560360306 -10800 # Node ID e3f0eaf23f4fe3ed30dfb47384179f9d95b0a374 # Parent 52985e4bc9ced91531046df897419598d720ae87 Change the error message for unimplemented option argument. diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/64vw.c --- a/tools/64vw.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/64vw.c Wed Jun 12 20:25:06 2019 +0300 @@ -164,7 +164,7 @@ break; default: - dmErrorMsg("Unknown option '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/data2inc.c --- a/tools/data2inc.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/data2inc.c Wed Jun 12 20:25:06 2019 +0300 @@ -120,7 +120,7 @@ break; default: - dmErrorMsg("Unknown option '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/dumpmod.c --- a/tools/dumpmod.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/dumpmod.c Wed Jun 12 20:25:06 2019 +0300 @@ -85,7 +85,7 @@ break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/fontconv.c --- a/tools/fontconv.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/fontconv.c Wed Jun 12 20:25:06 2019 +0300 @@ -141,7 +141,7 @@ break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/gentab.c --- a/tools/gentab.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/gentab.c Wed Jun 12 20:25:06 2019 +0300 @@ -165,7 +165,7 @@ break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/gfxconv.c --- a/tools/gfxconv.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/gfxconv.c Wed Jun 12 20:25:06 2019 +0300 @@ -958,7 +958,7 @@ break; default: - dmErrorMsg("Unknown option '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/mod2wav.c --- a/tools/mod2wav.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/mod2wav.c Wed Jun 12 20:25:06 2019 +0300 @@ -132,7 +132,7 @@ break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/objlink.c --- a/tools/objlink.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/objlink.c Wed Jun 12 20:25:06 2019 +0300 @@ -504,7 +504,7 @@ break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/packed.c --- a/tools/packed.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/packed.c Wed Jun 12 20:25:06 2019 +0300 @@ -145,6 +145,7 @@ break; default: + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/ppl.c --- a/tools/ppl.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/ppl.c Wed Jun 12 20:25:06 2019 +0300 @@ -164,7 +164,7 @@ break; default: - dmErrorMsg("Unknown option '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; } diff -r 52985e4bc9ce -r e3f0eaf23f4f tools/xm2jss.c --- a/tools/xm2jss.c Wed Jun 12 18:28:53 2019 +0300 +++ b/tools/xm2jss.c Wed Jun 12 20:25:06 2019 +0300 @@ -121,7 +121,7 @@ case 9: optOptimize = TRUE; break; default: - dmErrorMsg("Unknown argument '%s'.\n", currArg); + dmErrorMsg("Unimplemented option argument '%s'.\n", currArg); return FALSE; }