about summary refs log tree commit diff
path: root/editor/pnmquant
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pnmquant')
-rwxr-xr-xeditor/pnmquant4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/pnmquant b/editor/pnmquant
index 827d6fde..f7af9e7a 100755
--- a/editor/pnmquant
+++ b/editor/pnmquant
@@ -89,7 +89,7 @@ sub parseCommandLine(@) {
 
     my %cmdline;
 
-    my $validOptions = GetOptions(\%cmdline,
+    my $optsAreValid = GetOptions(\%cmdline,
                                   "center",
                                   "meancolor",
                                   "meanpixel",
@@ -101,7 +101,7 @@ sub parseCommandLine(@) {
                                   "quiet",
                                   "plain");
 
-    if (!$validOptions) {
+    if (!$optsAreValid) {
         print(STDERR "Invalid option syntax.\n");
         exit(1);
     }