[vlc-commits] test: missing new line

Rémi Denis-Courmont git at videolan.org
Sun Feb 24 17:45:52 CET 2019


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Feb 24 18:38:47 2019 +0200| [bfe7d8d508b06886426c93398dc630b0bf416624] | committer: Rémi Denis-Courmont

test: missing new line

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bfe7d8d508b06886426c93398dc630b0bf416624
---

 src/test/url.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/test/url.c b/src/test/url.c
index 14e715b102..4aae6b5161 100644
--- a/src/test/url.c
+++ b/src/test/url.c
@@ -37,18 +37,20 @@ static void test_compare(const char *in, const char *exp, const char *res)
     if (res == NULL)
     {
         if (exp != NULL)
-            fprintf(stderr, "\"%s\" returned NULL, expected \"%s\"", in, exp);
+            fprintf(stderr, "\"%s\" returned NULL, expected \"%s\"\n",
+                    in, exp);
         else
             return;
     }
     else
     {
         if (exp == NULL)
-            fprintf(stderr, "\"%s\" returned \"%s\", expected NULL", in, res);
+            fprintf(stderr, "\"%s\" returned \"%s\", expected NULL\n",
+                    in, res);
         else
         if (strcmp(res, exp))
-            fprintf(stderr, "\"%s\" returned \"%s\", expected \"%s\"\n", in,
-                    res, exp);
+            fprintf(stderr, "\"%s\" returned \"%s\", expected \"%s\"\n",
+                    in, res, exp);
         else
             return;
     }



More information about the vlc-commits mailing list