summaryrefslogtreecommitdiffstats
path: root/loader/undomounts.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader/undomounts.c')
-rw-r--r--loader/undomounts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/undomounts.c b/loader/undomounts.c
index 68b172370..31a98bbc7 100644
--- a/loader/undomounts.c
+++ b/loader/undomounts.c
@@ -156,8 +156,8 @@ void unmountFilesystems(void) {
while (*chptr != ' ') chptr++;
*chptr++ = '\0';
- if ((strcmp)(start, "/") && (strcmp)(start, "/tmp") &&
- (strcmp)(start, "/dev")) {
+ if (strcmp(start, "/") && strcmp(start, "/tmp") &&
+ strcmp(start, "/dev")) {
filesystems[numFilesystems].name = strdup(start);
filesystems[numFilesystems].what = FS;
filesystems[numFilesystems].mounted = 1;