From 907cbdb657c103babfc091e8e07f9d62118d9370 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Wed, 10 Jul 2013 20:28:44 +0800 Subject: [PATCH] Usermode/Automounter - Added message on successful automount --- Usermode/Applications/automounter_src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Usermode/Applications/automounter_src/main.c b/Usermode/Applications/automounter_src/main.c index c30924ab..df23d91b 100644 --- a/Usermode/Applications/automounter_src/main.c +++ b/Usermode/Applications/automounter_src/main.c @@ -88,5 +88,8 @@ void TryMount(const char *Volume, const char *Part) if( _SysMount(devpath, mntpath, NULL, "") ) { fprintf(stderr, "Unable to mount '%s'\n", devpath); } + else { + printf("Automouted '%s'\n", devpath); + } } -- 2.20.1