From 21d8349b92f19c1723217978ace967b5bccf3aac Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Thu, 1 Jun 2006 21:18:22 +0000 Subject: [PATCH] more gcc 4.1 fixes svn path=/trunk/; revision=22161 --- reactos/base/applications/sndvol32/sndvol32.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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);