diff options
Diffstat (limited to 'converter/pbm/pbmtolps.c')
-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); } |