From 3b70d1f1c99a7d82cf894a7ec6a4abe7597e1b61 Mon Sep 17 00:00:00 2001 From: Rafael Marçalo Date: Wed, 15 Sep 2021 15:27:33 +0000 Subject: Using space by default instead of tab due to OpenBSD conflicts with tabs --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index d625fed..9380298 100644 --- a/src/utils.c +++ b/src/utils.c @@ -251,7 +251,7 @@ printVideoInfo (char *format, Video *videos, int numberOfVideos) { for (int i = 0; i < numberOfVideos; i++) { - printf ("%s\t%s\n", videos[i].id, videos[i].title); + printf ("%s %s\n", videos[i].id, videos[i].title); } } } -- cgit v1.2.3