Skip to content

Commit 5f00e77

Browse files
Fixed more \n bugs.
1 parent b13cf34 commit 5f00e77

File tree

1 file changed

+2
-2
lines changed
  • source/kernel/C/shell/commands

1 file changed

+2
-2
lines changed

source/kernel/C/shell/commands/mount.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int cmd_mount(int argc, char** argv)
2828
general_partition_t* partition = search_general_partition(device);
2929

3030
if (!partition) {
31-
printf("mount: %s: partition not found.\n", device);
31+
printf("mount: %s: partition not found.", device);
3232
return 1;
3333
}
3434

@@ -59,6 +59,6 @@ int cmd_mount(int argc, char** argv)
5959
return 1;
6060
}
6161

62-
printf("mount: mounted %s at %s", device, mount_point);
62+
printf("mount: mounted %s at \'%s\'", device, mount_point);
6363
return 0;
6464
}

0 commit comments

Comments
 (0)