From: Andre Noll Date: Tue, 4 Sep 2018 11:11:25 +0000 (+0200) Subject: ao: Fix formatting of aow_show_drivers(). X-Git-Tag: v0.6.3~75 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=938a5d68c9bbdf422119fc9bcca2549e24b9a4e0 ao: Fix formatting of aow_show_drivers(). This got messed up in the lopsup conversion commit 870fcd0379ab from more than one year ago. --- diff --git a/ao_write.c b/ao_write.c index e2858b91..92f62f8f 100644 --- a/ao_write.c +++ b/ao_write.c @@ -159,8 +159,8 @@ static void aow_show_drivers(void) if (info->type == AO_TYPE_FILE) continue; - PARA_DEBUG_LOG("%s: %s", info->short_name, info->name); - PARA_DEBUG_LOG("priority: %d", info->priority); + PARA_DEBUG_LOG("name: %s: %s\n", info->short_name, info->name); + PARA_DEBUG_LOG("priority: %d\n", info->priority); for (j = 0; j < info->option_count; j++) { tmp = make_message("%s%s%s", keys? keys : "", keys? ", " : "", @@ -168,9 +168,9 @@ static void aow_show_drivers(void) free(keys); keys = tmp; } - PARA_DEBUG_LOG("keys: %s", keys? keys : "[none]"); + PARA_DEBUG_LOG("keys: %s\n", keys? keys : "[none]"); free(keys); - PARA_DEBUG_LOG("comment: %s", info->comment? + PARA_DEBUG_LOG("comment: %s\n", info->comment? info->comment : "[none]"); } }