diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-07-05 01:06:34 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-07-05 01:06:34 +0000 |
commit | 059ff4da0243c46898795eccbf98ef94eab95e64 (patch) | |
tree | 96d71ee9c59e794b8eb55bebbc9497ef7a771a4e /converter/pbm | |
parent | afcbdab8ff13554afb5c9ef5c682d2c57ed3a780 (diff) | |
download | netpbm-mirror-059ff4da0243c46898795eccbf98ef94eab95e64.tar.gz netpbm-mirror-059ff4da0243c46898795eccbf98ef94eab95e64.tar.xz netpbm-mirror-059ff4da0243c46898795eccbf98ef94eab95e64.zip |
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3651 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/pbm')
-rw-r--r-- | converter/pbm/pbmtolps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/converter/pbm/pbmtolps.c b/converter/pbm/pbmtolps.c index e9577ec8..968ec921 100644 --- a/converter/pbm/pbmtolps.c +++ b/converter/pbm/pbmtolps.c @@ -116,11 +116,11 @@ parseCommandLine(int argc, static void -validateLineWidth(float const sc_cols, - float const sc_rows, +validateLineWidth(float const scCols, + float const scRows, float const lineWidth) { - if (lineWidth >= sc_cols || lineWidth >= sc_rows) + if (lineWidth >= scCols || lineWidth >= scRows) pm_error("Absurdly large -linewidth value (%f)", lineWidth); } |