msvcrt: Fix a typo.

This commit is contained in:
Mike McCormack 2006-02-13 13:24:26 +01:00 committed by Alexandre Julliard
parent 3c5fc25b88
commit 968445ca77
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ void MSVCRT__assert(const char* str, const char* file, unsigned int line)
if (MSVCRT_app_type == 2)
{
char text[2048];
snprintf(text, sizeof(text), "File: %s\nLine: %d\n\nEpression: \"%s\"", file, line, str);
snprintf(text, sizeof(text), "File: %s\nLine: %d\n\nExpression: \"%s\"", file, line, str);
DoMessageBox("Assertion failed!", text);
}
else