From a7266b40e7b7c56c5e165ec5cea021eb40a565af Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Mon, 15 Aug 2016 20:48:35 +0200 Subject: [PATCH] Fix the message --- programs/mount/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/mount/src/main.cpp b/programs/mount/src/main.cpp index bbe74dea..dbf436cd 100644 --- a/programs/mount/src/main.cpp +++ b/programs/mount/src/main.cpp @@ -59,7 +59,7 @@ int main(int argc, char* argv[]){ std::string fs(fs_str); if(fs == "fat32"){ - printf("mkfs: Mounting %s fat32 filesystem on %s\n", mount_point_str, device_str); + printf("mkfs: Mounting %s fat32 filesystem on %s\n", device_str, mount_point_str); auto device_fd = open(device_str);