summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-12-15 22:39:36 -0800
committerEric Anholt <eric@anholt.net>2013-12-15 22:43:47 -0800
commitc24afd8a9e5621638bc86e9013df49c8caa593d8 (patch)
treea6c262ff96194684334fe25e66e0f54bfa86c60e /src
parent8f42fd3fe4ec6376234b520a546846600f23352f (diff)
Fix printout of missing versions/extensions.
Not sure how I misplaced the \n in the previous fix.
Diffstat (limited to 'src')
-rw-r--r--src/dispatch_common.c2
1 files changed, 1 insertions, 1 deletions
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) {