1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

pg_dump: Add missing newlines at end of messages

This commit is contained in:
Peter Eisentraut
2012-06-18 23:57:00 +03:00
parent f9429746c9
commit e1e97e9313
4 changed files with 6 additions and 6 deletions

View File

@ -1323,7 +1323,7 @@ void
on_exit_nicely(on_exit_nicely_callback function, void *arg)
{
if (on_exit_nicely_index >= MAX_ON_EXIT_NICELY)
exit_horribly(NULL, "out of on_exit_nicely slots");
exit_horribly(NULL, "out of on_exit_nicely slots\n");
on_exit_nicely_list[on_exit_nicely_index].function = function;
on_exit_nicely_list[on_exit_nicely_index].arg = arg;
on_exit_nicely_index++;