Skip to content

Commit 33e111f

Browse files
committed
Add missing format argument to ecpg_log() call
1 parent eb9a98b commit 33e111f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/ecpglib/execute.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ ECPGexecute(struct statement * stmt)
13571357
if (PQresultStatus(results) == PGRES_COMMAND_OK)
13581358
ECPGlog("ECPGexecute line %d: Got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
13591359
else
1360-
ECPGlog("ECPGexecute line %d: Got error after PGRES_COPY_OUT: %s", PQresultErrorMessage(results));
1360+
ECPGlog("ECPGexecute line %d: Got error after PGRES_COPY_OUT: %s", stmt->lineno, PQresultErrorMessage(results));
13611361
}
13621362
break;
13631363
}

0 commit comments

Comments
 (0)