diff options
Diffstat (limited to 'src/libc.c')
-rw-r--r-- | src/libc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ const char *display_libc() { #if defined(__linux__) - const char *musl = run_command_s("ldd $(which ls) | grep libc | grep musl)"; + const char *musl = run_command_s("ldd $(which ls) | grep libc | grep musl"); if (musl != NULL && strlen(musl) != 0) { free((void *)musl); return "musl"; |