diff options
Diffstat (limited to 'src/bin/psql/variables.h')
-rw-r--r-- | src/bin/psql/variables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h index 2c0949c79a..b8ee327db9 100644 --- a/src/bin/psql/variables.h +++ b/src/bin/psql/variables.h @@ -16,7 +16,7 @@ #define VARIABLES_H #define VALID_VARIABLE_CHARS "abcdefghijklmnopqrstuvwxyz"\ - "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "0123456789_" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "0123456789_" struct _variable { @@ -32,7 +32,7 @@ VariableSpace CreateVariableSpace(void); const char *GetVariable(VariableSpace space, const char *name); bool GetVariableBool(VariableSpace space, const char *name); bool SetVariable(VariableSpace space, const char *name, const char *value); -bool SetVariableBool(VariableSpace space, const char *name); +bool SetVariableBool(VariableSpace space, const char *name); bool DeleteVariable(VariableSpace space, const char *name); void DestroyVariableSpace(VariableSpace space); |