Avoid warnings caused by assert(...).

This commit is contained in:
Gerald Pfeifer 2003-02-12 21:28:04 +00:00 committed by Alexandre Julliard
parent 45abf7cfa0
commit 820157b836
1 changed files with 2 additions and 0 deletions

View File

@ -781,6 +781,7 @@ static int get_ansi_notification(INT unicodeNotificationCode)
}
ERR("unknown notification %x\n", unicodeNotificationCode);
assert(FALSE);
return 0;
}
/*
@ -4754,6 +4755,7 @@ static INT LISTVIEW_GetCountPerPage(LISTVIEW_INFO *infoPtr)
return LISTVIEW_GetCountPerRow(infoPtr) * LISTVIEW_GetCountPerColumn(infoPtr);
}
assert(FALSE);
return 0;
}
/***