diff --git a/reactos/base/applications/sndvol32/sndvol32.c b/reactos/base/applications/sndvol32/sndvol32.c index 903beee8fbe..a21dc1cfce6 100644 --- a/reactos/base/applications/sndvol32/sndvol32.c +++ b/reactos/base/applications/sndvol32/sndvol32.c @@ -332,8 +332,8 @@ UpdatePrefDlgControls(PPREFERENCES_CONTEXT Context, { Context->SelectedLine = LineID; - ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg, - IDC_CONTROLS)); + (void)ListView_DeleteAllItems(GetDlgItem(Context->hwndDlg, + IDC_CONTROLS)); Context->tmp = 0; SndMixerEnumConnections(Context->Mixer, @@ -497,8 +497,8 @@ DlgPreferencesProc(HWND hwndDlg, /* initialize the list view control */ hwndControls = GetDlgItem(hwndDlg, IDC_CONTROLS); - ListView_SetExtendedListViewStyle(hwndControls, - LVS_EX_CHECKBOXES); + (void)ListView_SetExtendedListViewStyle(hwndControls, + LVS_EX_CHECKBOXES); GetClientRect(hwndControls, &rcClient);