Commit 820157b8 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Avoid warnings caused by assert(...).

parent 45abf7cf
...@@ -781,6 +781,7 @@ static int get_ansi_notification(INT unicodeNotificationCode) ...@@ -781,6 +781,7 @@ static int get_ansi_notification(INT unicodeNotificationCode)
} }
ERR("unknown notification %x\n", unicodeNotificationCode); ERR("unknown notification %x\n", unicodeNotificationCode);
assert(FALSE); assert(FALSE);
return 0;
} }
/* /*
...@@ -4754,6 +4755,7 @@ static INT LISTVIEW_GetCountPerPage(LISTVIEW_INFO *infoPtr) ...@@ -4754,6 +4755,7 @@ static INT LISTVIEW_GetCountPerPage(LISTVIEW_INFO *infoPtr)
return LISTVIEW_GetCountPerRow(infoPtr) * LISTVIEW_GetCountPerColumn(infoPtr); return LISTVIEW_GetCountPerRow(infoPtr) * LISTVIEW_GetCountPerColumn(infoPtr);
} }
assert(FALSE); assert(FALSE);
return 0;
} }
/*** /***
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment