From f52c7e2ad0ac6fe8c2999ec649cfa25f7a6611df Mon Sep 17 00:00:00 2001 From: Austin English Date: Fri, 27 Mar 2009 17:13:48 -0500 Subject: [PATCH] cryptui: Fix a compiler warning on PC-BSD. --- dlls/cryptui/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/cryptui/main.c b/dlls/cryptui/main.c index ddbea8e299b..f29f1e67e2c 100644 --- a/dlls/cryptui/main.c +++ b/dlls/cryptui/main.c @@ -3337,7 +3337,7 @@ static void show_cert_usages(HWND hwnd, struct edit_cert_data *data) DWORD size; RECT rc; LVCOLUMNW column; - PurposeSelection purposeSelection; + PurposeSelection purposeSelection = PurposeEnableAll; GetWindowRect(lv, &rc); column.mask = LVCF_WIDTH;