mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
Fixed a warning.
svn path=/trunk/; revision=2107
This commit is contained in:
parent
5cd5457f10
commit
d50f7d2496
1 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@
|
||||||
int _cputs(const char *_str)
|
int _cputs(const char *_str)
|
||||||
{
|
{
|
||||||
int len = strlen(_str);
|
int len = strlen(_str);
|
||||||
int written = 0;
|
DWORD written = 0;
|
||||||
if (!WriteFile(filehnd(stdout->_file),_str,len,&written,NULL))
|
if (!WriteFile(filehnd(stdout->_file),_str,len,&written,NULL))
|
||||||
return -1;
|
return -1;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue