diff --git a/programs/wcmd/builtins.c b/programs/wcmd/builtins.c index 95e81cc5ee9..efba4cd81bc 100644 --- a/programs/wcmd/builtins.c +++ b/programs/wcmd/builtins.c @@ -166,7 +166,7 @@ char *p; 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 @@ char flags[9] = {" "}; 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 {