mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:22:35 +00:00
[CMD] Code formatting only.
This commit is contained in:
parent
1456310503
commit
24ed534474
2 changed files with 10 additions and 10 deletions
|
@ -34,7 +34,7 @@
|
|||
* Perform CALL command.
|
||||
*/
|
||||
|
||||
INT cmd_call (LPTSTR param)
|
||||
INT cmd_call(LPTSTR param)
|
||||
{
|
||||
TCHAR line[CMDLINE_LENGTH + 1];
|
||||
TCHAR *first;
|
||||
|
@ -49,7 +49,7 @@ INT cmd_call (LPTSTR param)
|
|||
|
||||
/* Do a second round of %-variable substitutions */
|
||||
if (!SubstituteVars(param, line, _T('%')))
|
||||
return nErrorLevel = 1;
|
||||
return (nErrorLevel = 1);
|
||||
|
||||
/* Find start and end of first word */
|
||||
first = line;
|
||||
|
@ -67,7 +67,7 @@ INT cmd_call (LPTSTR param)
|
|||
memmove(param + 1, param, (_tcslen(param) + 1) * sizeof(TCHAR));
|
||||
*param++ = _T('\0');
|
||||
|
||||
if (*first == _T(':') && (bc))
|
||||
if (*first == _T(':') && bc)
|
||||
{
|
||||
/* CALL :label - call a subroutine of the current batch file */
|
||||
while (*param == _T(' '))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue