about summary refs log tree commit diff
path: root/converter/pbm/pbmtolps.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/pbm/pbmtolps.c')
-rw-r--r--converter/pbm/pbmtolps.c6
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);
 }