roken: parse_units returns void

despite the fact that the called function returns void,
returning a result here throws an error with solaris cc.

just call the function and don't return
This commit is contained in:
Daria Phoebe Brashear
2018-04-18 15:49:49 -04:00
committed by Jeffrey Altman
parent 39b78ad6ce
commit 7333c2c945

View File

@@ -376,5 +376,5 @@ unparse_flags(int num, const struct units *units, char *s, size_t len)
ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
print_flags_table (const struct units *units, FILE *f)
{
return rk_print_flags_table (units, f);
rk_print_flags_table (units, f);
}