Commit 920f451c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

riched32: Fix a compiler warning on clang.

parent fc48daa0
......@@ -844,7 +844,7 @@ static void test_EM_POSFROMCHAR(void)
/* Fails on builtin because horizontal scrollbar is not being shown */
ok(pl.x < xpos ||
broken(pl.x == xpos), /* Win9x, WinME and NT4 */
"EM_POSFROMCHAR reports x=%hd, expected value less than %d\n", pl.x, xpos);
"EM_POSFROMCHAR reports x=%d, expected value less than %d\n", pl.x, xpos);
}
DestroyWindow(hwndRichEdit);
}
......
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