We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
\n
1 parent b13cf34 commit 5f00e77Copy full SHA for 5f00e77
source/kernel/C/shell/commands/mount.c
@@ -28,7 +28,7 @@ int cmd_mount(int argc, char** argv)
28
general_partition_t* partition = search_general_partition(device);
29
30
if (!partition) {
31
- printf("mount: %s: partition not found.\n", device);
+ printf("mount: %s: partition not found.", device);
32
return 1;
33
}
34
@@ -59,6 +59,6 @@ int cmd_mount(int argc, char** argv)
59
60
61
62
- printf("mount: mounted %s at %s", device, mount_point);
+ printf("mount: mounted %s at \'%s\'", device, mount_point);
63
return 0;
64
0 commit comments