summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <raroma09@gmail.com>2021-09-15 20:41:39 +0100
committerrafa_99 <raroma09@gmail.com>2021-09-15 20:41:39 +0100
commit390763b0adcf3c435405251fc2983df8e73df7b2 (patch)
treed8b4408b716042576d7f07b433f7d17a21ab7871
parent3b70d1f1c99a7d82cf894a7ec6a4abe7597e1b61 (diff)
Revert "Using space by default instead of tab due to OpenBSD conflicts with tabs"
This reverts commit 3b70d1f1c99a7d82cf894a7ec6a4abe7597e1b61.
-rw-r--r--src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c
index 9380298..d625fed 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 %s\n", videos[i].id, videos[i].title);
+ printf ("%s\t%s\n", videos[i].id, videos[i].title);
}
}
}