remove extraneous \n's

svn path=/trunk/; revision=17961
This commit is contained in:
Royce Mitchell III 2005-09-21 02:04:07 +00:00
parent 5c0d0a5c3d
commit de51245b10
2 changed files with 5 additions and 5 deletions

View file

@ -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."
}

View file

@ -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;
}