mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
remove extraneous \n's
svn path=/trunk/; revision=17961
This commit is contained in:
parent
5c0d0a5c3d
commit
de51245b10
2 changed files with 5 additions and 5 deletions
|
@ -636,9 +636,9 @@ STRING_SCREEN_COL, "invalid value for col"
|
|||
STRING_SCREEN_ROW, "invalid value for row"
|
||||
STRING_TIMER_TIME "Timer %d is %s: "
|
||||
|
||||
STRING_INVALID_OPERAND, "Invalid operand.\n"
|
||||
STRING_EXPECTED_CLOSE_PAREN, "Expected ')'.\n"
|
||||
STRING_EXPECTED_NUMBER_OR_VARIABLE,"Expected number or variable name.\n"
|
||||
STRING_SYNTAX_COMMAND_INCORRECT, "The syntax of the command is incorrect.\n"
|
||||
STRING_INVALID_OPERAND, "Invalid operand."
|
||||
STRING_EXPECTED_CLOSE_PAREN, "Expected ')'."
|
||||
STRING_EXPECTED_NUMBER_OR_VARIABLE,"Expected number or variable name."
|
||||
STRING_SYNTAX_COMMAND_INCORRECT, "The syntax of the command is incorrect."
|
||||
|
||||
}
|
||||
|
|
|
@ -481,7 +481,7 @@ seta_eval ( LPCTSTR p )
|
|||
}
|
||||
if ( !seta_stmt ( &p, &rval ) )
|
||||
return FALSE;
|
||||
ConOutPrintf ( _T("%i\n"), rval );
|
||||
ConOutPrintf ( _T("%i"), rval );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue