riched32: Fix a compiler warning on clang.

This commit is contained in:
Austin English 2010-09-20 03:50:14 -05:00 committed by Alexandre Julliard
parent fc48daa0d2
commit 920f451c9e
1 changed files with 1 additions and 1 deletions

View File

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