From 357fcb9c64bf6b2c8a38844e2b174e060c310d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Mon, 18 Dec 2023 17:38:12 -0500 Subject: [PATCH] Fix indentation, make llvm happy clang says "label at end of switch statement is a C2x extension." --- libc/calls/getprogramexecutablename.greg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/calls/getprogramexecutablename.greg.c b/libc/calls/getprogramexecutablename.greg.c index 20db37e23..17d270ad4 100644 --- a/libc/calls/getprogramexecutablename.greg.c +++ b/libc/calls/getprogramexecutablename.greg.c @@ -58,8 +58,8 @@ static inline int AllNumDot(const char *s) { case 0: return 1; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '.': - /* continue */ - } + ; /* continue */ + } } }