Commit 968445ca authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msvcrt: Fix a typo.

parent 3c5fc25b
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment