mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
- Fixed some type problems if cmd is compiled as unicode.
svn path=/trunk/; revision=5466
This commit is contained in:
parent
8996ac2b8f
commit
529277d521
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ INT CommandDelete (LPTSTR cmd, LPTSTR param)
|
||||||
else
|
else
|
||||||
ConOutPrintf (_T(" %lu file%s deleted\n"),
|
ConOutPrintf (_T(" %lu file%s deleted\n"),
|
||||||
dwFiles,
|
dwFiles,
|
||||||
(dwFiles == 1) ? "" : "s");
|
(dwFiles == 1) ? _T("") : _T("s"));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue