Optimization

This commit is contained in:
MelwareDE 2009-03-13 00:46:09 +00:00
parent db92682c3a
commit ae278ffa73
1 changed files with 3 additions and 5 deletions

View File

@ -21,11 +21,9 @@ extern char *emptyid;
extern void cc_verbose_internal(char *text, ...);
static inline int cc_verbose_check(int o_v, int c_d) {
if (unlikely((o_v == 0) || (option_verbose > o_v))) {
if ((!c_d) || ((c_d) && (capidebug))) {
return (1);
}
}
if (unlikely(((o_v == 0) || (option_verbose > o_v)) && ((!c_d) || ((c_d) && (capidebug)))))
return (1);
return (0);
}