diff options
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/FileCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 8c5bbc50f..9df5b8b58 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -56,7 +56,7 @@ IsValidValue(const char *p) while (*p) { const char ch = *p++; - if ((unsigned char)ch >= 0x20) + if ((unsigned char)ch < 0x20) return false; } |