elm_prefs_cc - clean up return with added brackets to be clear

it seems coverity gets confused with the sizeof(c) / sizeof(type). add
() hoping it will silence it. this is related to:

CID 1353600 and 1353599
This commit is contained in:
Carsten Haitzler 2016-07-08 18:33:02 +09:00
parent 96958909ba
commit 33880a3d7c
1 changed files with 2 additions and 2 deletions

View File

@ -733,13 +733,13 @@ New_Object_Handler object_handlers[] =
int
object_handler_num(void)
{
return sizeof(object_handlers) / sizeof (New_Object_Handler);
return (sizeof(object_handlers) / sizeof (New_Object_Handler));
}
int
statement_handler_num(void)
{
return sizeof(statement_handlers) / sizeof (New_Statement_Handler);
return (sizeof(statement_handlers) / sizeof (New_Statement_Handler));
}
static void