programs/cmd: Add missing '\n' to Wine trace.

This commit is contained in:
Francois Gouget 2007-06-06 10:44:04 +02:00 committed by Alexandre Julliard
parent f7d314e5a4
commit a2deafcc3f
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ static DIRECTORY_STACK *WCMD_list_directory (DIRECTORY_STACK *inputparms, int le
fd = HeapReAlloc(GetProcessHeap(),0,fd,(entry_count+1)*sizeof(WIN32_FIND_DATA));
if (fd == NULL) {
FindClose (hff);
WINE_ERR ("Out of memory");
WINE_ERR("Out of memory\n");
errorlevel = 1;
return parms->next;
}