From c24afd8a9e5621638bc86e9013df49c8caa593d8 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sun, 15 Dec 2013 22:39:36 -0800 Subject: [PATCH] Fix printout of missing versions/extensions. Not sure how I misplaced the \n in the previous fix. --- src/dispatch_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch_common.c b/src/dispatch_common.c index 2af95a3..b804eb7 100644 --- a/src/dispatch_common.c +++ b/src/dispatch_common.c @@ -469,7 +469,7 @@ epoxy_print_failure_reasons(const char *name, "Requires one of:\n", name); for (i = 0; providers[i] != 0; i++) - fprintf(stderr, " %s", + fprintf(stderr, " %s\n", provider_names[providers[i]]); if (providers[0] == 0) {