aboutsummaryrefslogtreecommitdiff
path: root/src/ellinika/sql.scm
diff options
context:
space:
mode:
Diffstat (limited to 'src/ellinika/sql.scm')
-rw-r--r--src/ellinika/sql.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ellinika/sql.scm b/src/ellinika/sql.scm
index 5867d28..f281847 100644
--- a/src/ellinika/sql.scm
+++ b/src/ellinika/sql.scm
@@ -44,7 +44,7 @@
44 ((string? arg) arg) 44 ((string? arg) arg)
45 ((elstr? arg) (elstr->string arg)) 45 ((elstr? arg) (elstr->string arg))
46 ((number? arg) (number->string arg)) 46 ((number? arg) (number->string arg))
47 ((bool? arg) (if arg "true" "false")) 47 ((boolean? arg) (if arg "true" "false"))
48 (else 48 (else
49 (error "Unhandled argument type: ~S" arg)))) 49 (error "Unhandled argument type: ~S" arg))))
50 50

Return to:

Send suggestions and report system problems to the System administrator.