diff options
Diffstat (limited to 'Build/source/texk/ps2pk/mag.c')
-rw-r--r-- | Build/source/texk/ps2pk/mag.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Build/source/texk/ps2pk/mag.c b/Build/source/texk/ps2pk/mag.c index 3f5c6b61d57..5303a6e0493 100644 --- a/Build/source/texk/ps2pk/mag.c +++ b/Build/source/texk/ps2pk/mag.c @@ -104,7 +104,7 @@ int main(int argc, char *argv[]) { if (*++argv[0] == '\0') { argc--; argv++; } - if (argv[0] == '\0') goto invalid; + if (argv[0] == NULL) goto invalid; DPI = atof(argv[0]); done = 1; break; @@ -115,8 +115,9 @@ invalid: } if (argc < 1) { - msg ("mag (ps2pk) version " PACKAGE_VERSION "\n"); - fatal("Usage: %s [-r] [-Rdpi] size . . .\n", myname); + msg ("mag (ps2pk) version " PACKAGE_VERSION " (" TL_VERSION ")\n"); + msg ("Usage: %s [-r] [-Rdpi] size . . .\n", myname); + fatal("\nEmail bug reports to %s.\n", PACKAGE_BUGREPORT); } #ifdef WIN32 |