diff options
author | Rafael Marçalo <raroma09@gmail.com> | 2021-09-15 15:27:33 +0000 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2021-09-15 15:27:33 +0000 |
commit | 3b70d1f1c99a7d82cf894a7ec6a4abe7597e1b61 (patch) | |
tree | 7bf4bb6627c7174ec08fa3c2d932020ed6e06174 /src | |
parent | 7069ee5f9fa697c7e503d91cbec7a8d89f8eca01 (diff) |
Using space by default instead of tab due to OpenBSD conflicts with tabs
Diffstat (limited to 'src')
-rw-r--r-- | src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } } |