From 0344745e300b1c1bf8f3c4cd57d78fb960436ba2 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 16 Mar 2000 20:02:44 +0000 Subject: [PATCH] Fixed a confusing error message svn path=/trunk/; revision=1063 --- reactos/apps/utils/shell/shell.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/apps/utils/shell/shell.c b/reactos/apps/utils/shell/shell.c index 36db9ab4c10..4d6a0075650 100644 --- a/reactos/apps/utils/shell/shell.c +++ b/reactos/apps/utils/shell/shell.c @@ -1,4 +1,4 @@ -/* $Id: shell.c,v 1.34 2000/03/16 18:44:55 dwelch Exp $ +/* $Id: shell.c,v 1.35 2000/03/16 20:02:44 ekohl Exp $ * * PROJECT : ReactOS Operating System * DESCRIPTION: ReactOS' Native Shell @@ -68,14 +68,14 @@ void ExecuteDir(char* cmdline) if (shandle==INVALID_HANDLE_VALUE) { - debug_printf("Invalid directory\n"); + debug_printf("File not found\n\n"); return; } do { debug_printf("%-15.15s",FindData.cAlternateFileName); if(FindData.dwFileAttributes &FILE_ATTRIBUTE_DIRECTORY) - debug_printf(" "),nRep++; + debug_printf(" "),nRep++; else debug_printf(" %10d ",FindData.nFileSizeLow),nFile++;