commit: 86e86455eb3fdd1c320395f3895f7bcb64f1c2fd
parent 3dad7ea700332cd309f901ae90b6a8d1a095753a
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 5 Aug 2021 09:15:16 +0200
bin/tee: Fix formatting
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/tee.c b/bin/tee.c
@@ -23,7 +23,7 @@ int
main(int argc, char *argv[])
{
const char *mode = "w";
- FILE **fds = { NULL }; // Shut up GCC
+ FILE **fds = {NULL}; // Shut up GCC
int c;
while((c = getopt(argc, argv, ":ai")) != -1)