aboutsummaryrefslogtreecommitdiff
path: root/src/database_postgres.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/database_postgres.cc')
-rw-r--r--src/database_postgres.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database_postgres.cc b/src/database_postgres.cc
index 8cfc6ab..3c522c1 100644
--- a/src/database_postgres.cc
+++ b/src/database_postgres.cc
@@ -145,7 +145,7 @@ static void ParamBool(ParamBuffer *Params, bool Value){
if(Params->PreferredFormat == 1){ // BINARY FORMAT
uint8 Data = (Value ? 0x01 : 0x00);
InsertBinaryParam(Params, &Data, 1);
- }else{ // TEXT FORMAT
+ }else{
InsertTextParam(Params, (Value ? "TRUE" : "FALSE"));
}
}