diff options
Diffstat (limited to 'plugins/Clist/clistopts.c')
-rw-r--r-- | plugins/Clist/clistopts.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Clist/clistopts.c b/plugins/Clist/clistopts.c index 33e880e3fc..9a787df82b 100644 --- a/plugins/Clist/clistopts.c +++ b/plugins/Clist/clistopts.c @@ -236,9 +236,7 @@ static UINT expertOnlyControls[] = { IDC_ALWAYSSTATUS }; int CListOptInit(WPARAM wParam, LPARAM lParam)
{
- OPTIONSDIALOGPAGE odp;
-
- ZeroMemory(&odp, sizeof(odp));
+ OPTIONSDIALOGPAGE odp = { 0 };
odp.cbSize = sizeof(odp);
odp.position = -1000000000;
odp.hInstance = g_hInst;
|