aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mount.c3
-rw-r--r--util-linux/mount.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/mount.c b/mount.c
index fc057473f..b4f5746bc 100644
--- a/mount.c
+++ b/mount.c
@@ -479,7 +479,8 @@ singlemount:
if (strchr(device, ':') != NULL)
filesystemType = "nfs";
if (strcmp(filesystemType, "nfs") == 0) {
- rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1)
+ rc = nfsmount (device, directory, &flags,
+ &extra_opts, &string_flags, 1);
if ( rc != 0) {
fatalError("nfsmount failed: %s\n", strerror(errno));
rc = FALSE;
diff --git a/util-linux/mount.c b/util-linux/mount.c
index fc057473f..b4f5746bc 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -479,7 +479,8 @@ singlemount:
if (strchr(device, ':') != NULL)
filesystemType = "nfs";
if (strcmp(filesystemType, "nfs") == 0) {
- rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1)
+ rc = nfsmount (device, directory, &flags,
+ &extra_opts, &string_flags, 1);
if ( rc != 0) {
fatalError("nfsmount failed: %s\n", strerror(errno));
rc = FALSE;