More verbose output when file not found.

diff --git a/programs/wcmd/builtins.c b/programs/wcmd/builtins.c
index 95e81cc..efba4cd 100644
--- a/programs/wcmd/builtins.c
+++ b/programs/wcmd/builtins.c
@@ -166,7 +166,7 @@
 
   hff = FindFirstFile (param1, &fd);
   if (hff == INVALID_HANDLE_VALUE) {
-    WCMD_output ("File Not Found\n");
+    WCMD_output ("%s :File Not Found\n",param1);
     return;
   }
   if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL)
@@ -530,7 +530,7 @@
 
   hff = FindFirstFile (param1, &fd);
   if (hff == INVALID_HANDLE_VALUE) {
-    WCMD_output ("File Not Found\n");
+    WCMD_output ("%s: File Not Found\n",param1);
   }
   else {
     do {