aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2011-07-07 11:22:43 +0200
committermaximilian attems <max@stro.at>2011-07-07 11:22:43 +0200
commit681948fb97d6351e32f277f10fd176c1bc6d1ebf (patch)
treebf6408e50fab5d6d8e389e80ea16e7e16f5c09bd
parent41932af6bc926b63004d05e4a8e8f71501079c58 (diff)
downloadklibc-681948fb97d6351e32f277f10fd176c1bc6d1ebf.tar.gz
[klibc] mount: whitespace policy
fix: WARNING: space prohibited between function name and open parenthesis '(' Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--usr/utils/mount_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/utils/mount_main.c b/usr/utils/mount_main.c
index ee087201528af..ab3cb718f0039 100644
--- a/usr/utils/mount_main.c
+++ b/usr/utils/mount_main.c
@@ -44,9 +44,9 @@ static __noreturn print_mount(char *type)
continue;
printf("%s on %s", mnt->mnt_fsname, mnt->mnt_dir);
if (mnt->mnt_type != NULL && mnt->mnt_type != '\0')
- printf (" type %s", mnt->mnt_type);
+ printf(" type %s", mnt->mnt_type);
if (mnt->mnt_opts != NULL && mnt->mnt_opts != '\0')
- printf (" (%s)", mnt->mnt_opts);
+ printf(" (%s)", mnt->mnt_opts);
printf("\n");
}
endmntent(mfp);