programs/cmd: Add missing '\n' to Wine trace.
This commit is contained in:
parent
f7d314e5a4
commit
a2deafcc3f
|
@ -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));
|
fd = HeapReAlloc(GetProcessHeap(),0,fd,(entry_count+1)*sizeof(WIN32_FIND_DATA));
|
||||||
if (fd == NULL) {
|
if (fd == NULL) {
|
||||||
FindClose (hff);
|
FindClose (hff);
|
||||||
WINE_ERR ("Out of memory");
|
WINE_ERR("Out of memory\n");
|
||||||
errorlevel = 1;
|
errorlevel = 1;
|
||||||
return parms->next;
|
return parms->next;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue