X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-ditf.c;h=fde9e043ef3303cf1f63cc5260209933570a8da7;hb=acca25c347b35a720c005436160ad623767b5eb1;hp=9d65d30c138430c99aa75103a3f3195309d71a01;hpb=05e0214d821f1a7604b4a0897907f347761b56e6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-ditf.c b/src/afb-ditf.c index 9d65d30c..fde9e043 100644 --- a/src/afb-ditf.c +++ b/src/afb-ditf.c @@ -107,14 +107,11 @@ static void hooked_vverbose_cb(void *closure, int level, const char *file, int l struct afb_ditf *ditf = closure; vverbose_cb(closure, level, file, line, function, fmt, args); afb_hook_ditf_vverbose(ditf, level, file, line, function, fmt, args); - vverbose_cb(closure, level, file, line, function, fmt, args); } static void hooked_old_vverbose_cb(void *closure, int level, const char *file, int line, const char *fmt, va_list args) { - struct afb_ditf *ditf = closure; - old_vverbose_cb(closure, level, file, line, fmt, args); - afb_hook_ditf_vverbose(ditf, level, file, line, "", fmt, args); + hooked_vverbose_cb(closure, level, file, line, "?", fmt, args); } static struct afb_event hooked_event_make_cb(void *closure, const char *name)