aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2025-12-27 14:44:19 +0100
committerTristan Riehs <tristan.riehs@inria.fr>2025-12-27 14:44:19 +0100
commitfe97d16fe3f5f434d084080d5e8d71ca43d86b73 (patch)
tree9e9e4962ece2763776c77d3c6baffd0572c149b7 /src
parent3403b294b75b893f9f18b1d140473eae94e4ff87 (diff)
Fix doc
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index ad64422..4ca6cfe 100644
--- a/src/main.c
+++ b/src/main.c
@@ -92,8 +92,8 @@ int prompt_yes_no(void)
return 0;
}
-/* Convert heap-allocated *STR to C string to SQL string, essentially by adding
- * single quotes to escape single quotes. */
+/* Convert heap-allocated *STR from C string to SQL string, essentially by
+ * adding single quotes to escape single quotes. */
static void sanitize_sql_str(char **str)
{
int nt = 0; /* total number to insert */