mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fixed uninitialized variable warning
svn path=/trunk/; revision=19704
This commit is contained in:
parent
b0c50c3529
commit
861c2e6fd6
1 changed files with 1 additions and 1 deletions
|
@ -1570,7 +1570,7 @@ ProcessPageDlgProc(HWND hwndDlg,
|
||||||
case WM_NOTIFY:
|
case WM_NOTIFY:
|
||||||
{
|
{
|
||||||
LPNMHDR lpnm = (LPNMHDR)lParam;
|
LPNMHDR lpnm = (LPNMHDR)lParam;
|
||||||
ULONG MaxProgress;
|
ULONG MaxProgress = 0;
|
||||||
|
|
||||||
switch (lpnm->code)
|
switch (lpnm->code)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue