mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-07 14:24:14 +01:00
WINGs: Use the macro 'wlengthof' to get the number of element in an array
The new macro 'wlengthof' from WUtil makes code easier to read than the previous [sizeof() / sizeof([0]) ] construct. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
committed by
Carlos R. Mafra
parent
fd47650717
commit
a3b6b62049
@@ -190,7 +190,7 @@ void menu_parser_define_macro(WMenuParser parser)
|
||||
}
|
||||
if (*parser->rd == ')') break;
|
||||
|
||||
if (macro->arg_count >= sizeof(arg_name) / sizeof(arg_name[0])) {
|
||||
if (macro->arg_count >= wlengthof(arg_name)) {
|
||||
WMenuParserError(parser, _("too many parameters for macro \"%s\" definition"), macro->name);
|
||||
wfree(macro);
|
||||
*parser->rd = '\0'; // fake end-of-line to avoid warnings from remaining line content
|
||||
|
||||
Reference in New Issue
Block a user