diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-08-29 20:07:34 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-08-29 20:07:34 +0000 |
commit | 0a03ff5e2b6b1a10a36009ef131a6671e2357931 (patch) | |
tree | f2386eaa95031fdd1d50438e1ef2dfd775b6657e /converter/other | |
parent | a6af2469e4cb6a5d07c64bb57b2becad711fc3fe (diff) | |
download | netpbm-mirror-0a03ff5e2b6b1a10a36009ef131a6671e2357931.tar.gz netpbm-mirror-0a03ff5e2b6b1a10a36009ef131a6671e2357931.tar.xz netpbm-mirror-0a03ff5e2b6b1a10a36009ef131a6671e2357931.zip |
Fix bug in previous commit
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4622 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r-- | converter/other/pbmtopgm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/pbmtopgm.c b/converter/other/pbmtopgm.c index b9762e26..44d8cbc2 100644 --- a/converter/other/pbmtopgm.c +++ b/converter/other/pbmtopgm.c @@ -43,7 +43,7 @@ parseCommandLine(int const argc, if (argc-1 >= 3) cmdlineP->inputFileName = argv[3]; else { - cmdlineP->inputFileName = "'"; + cmdlineP->inputFileName = "-"; if (argc-1 > 3) pm_error("Too many arguments (%d). The most possible are " |