mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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
|
@ -15,9 +15,9 @@
|
|||
|
||||
int _cputs(const char *_str)
|
||||
{
|
||||
int len = strlen(_str);
|
||||
int written = 0;
|
||||
if ( !WriteFile(filehnd(stdout->_file),_str,len,&written,NULL))
|
||||
return -1;
|
||||
return 0;
|
||||
int len = strlen(_str);
|
||||
DWORD written = 0;
|
||||
if (!WriteFile(filehnd(stdout->_file),_str,len,&written,NULL))
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue