mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 07:41:51 +00:00
[CMD]
Fix MSVC / 64 bit warnings svn path=/trunk/; revision=56258
This commit is contained in:
parent
82c185ae72
commit
00b699d98b
12 changed files with 30 additions and 28 deletions
|
@ -80,7 +80,7 @@ INT cmd_goto (LPTSTR param)
|
|||
while (BatchGetString (textline, sizeof(textline) / sizeof(textline[0])))
|
||||
{
|
||||
int pos;
|
||||
int size;
|
||||
INT_PTR size;
|
||||
|
||||
/* Strip out any trailing spaces or control chars */
|
||||
tmp = textline + _tcslen (textline) - 1;
|
||||
|
@ -93,7 +93,7 @@ INT cmd_goto (LPTSTR param)
|
|||
tmp = textline;
|
||||
while (_istspace (*tmp))
|
||||
tmp++;
|
||||
|
||||
|
||||
/* All space after leading space terminate the string */
|
||||
size = _tcslen(tmp) -1;
|
||||
pos=0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue