fix printf

This commit is contained in:
Enno Rehling 2009-09-23 06:53:35 +00:00
parent f7bc02dddb
commit 64046044d3
1 changed files with 1 additions and 1 deletions

View File

@ -2087,7 +2087,7 @@ static void log_orders(const struct message * msg)
if (msg->type->types[i]->copy==&var_copy_order) { if (msg->type->types[i]->copy==&var_copy_order) {
const char * section = nr_section(msg); const char * section = nr_section(msg);
nr_render(msg, default_locale, buffer, sizeof(buffer), NULL); nr_render(msg, default_locale, buffer, sizeof(buffer), NULL);
log_printf(("MESSAGE [%s]: %s\n", section, buffer)); log_printf("MESSAGE [%s]: %s\n", section, buffer);
} }
} }
} }