From 06a87a928ee3f272e1a25f15a8a55ad55da636f3 Mon Sep 17 00:00:00 2001 From: "D. Richard Hipp" Date: Wed, 6 Jun 2018 23:31:26 +0000 Subject: [PATCH 0042/1009] Change a comma into a logically equivalent but semantically clearer semicolon. From https://github.com/mackyle/sqlite/commit/06a87a928ee3f272e1a25f15a8a55ad55da636f3 --- src/alter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alter.c b/src/alter.c index 51d4a40..f338e8b 100644 --- a/src/alter.c +++ b/src/alter.c @@ -142,7 +142,7 @@ static void renameParentFunc( } } - zResult = sqlite3MPrintf(db, "%s%s", (zOutput?zOutput:""), zInput), + zResult = sqlite3MPrintf(db, "%s%s", (zOutput?zOutput:""), zInput); sqlite3_result_text(context, zResult, -1, SQLITE_DYNAMIC); sqlite3DbFree(db, zOutput); } -- 1.8.3.1