comctl32/tests: Make sure to use a return value (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-16 18:21:09 -08:00 committed by Alexandre Julliard
parent 223c431d90
commit 85e3ff245f
1 changed files with 1 additions and 0 deletions

View File

@ -527,6 +527,7 @@ static void test_line_size(HWND hWndTrackbar){
/* test TBM_SETLINESIZE */
r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 10);
expect(1,r);
r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 4);
expect(10, r);