summaryrefslogtreecommitdiff
path: root/src/postgres.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/postgres.sml')
-rw-r--r--src/postgres.sml3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/postgres.sml b/src/postgres.sml
index f3b9e3f1..c180e38f 100644
--- a/src/postgres.sml
+++ b/src/postgres.sml
@@ -680,7 +680,7 @@ fun makeParams inputs =
string " };",
newline,
if List.exists isBlob inputs then
- box [string "const int *paramLengths = uw_malloc(ctx, ",
+ box [string "int *paramLengths = uw_malloc(ctx, ",
string (Int.toString (length inputs)),
string " * sizeof(int));",
newline,
@@ -696,7 +696,6 @@ fun makeParams inputs =
| _ => string "0",
string ";",
newline]) inputs,
- string " };",
newline]
else
box [string "const int *paramLengths = paramFormats;",