diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-04 12:23:43 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-04 16:55:43 +0200 |
commit | eb0abe2509bdcd923f12f471e7af4aa7f87909e1 (patch) | |
tree | 4aca1c87d1b4884bcdc411df2e49837c8398bf2e /include/afb/afb-req-x2.h | |
parent | c8dcf6ba5152ebc2650a35ed26329ac78efc9ed6 (diff) |
afb-req: Fix a bug in afb_req_verbose
The newer version of afb_req_verbose was self recursive
leading the crashes.
Bug-AGL: SPEC-1561
Change-Id: I40959e5b72ca850712c27a505e77efea43aadabd
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-req-x2.h')
-rw-r--r-- | include/afb/afb-req-x2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afb/afb-req-x2.h b/include/afb/afb-req-x2.h index bd4bc767..4ae1af7b 100644 --- a/include/afb/afb-req-x2.h +++ b/include/afb/afb-req-x2.h @@ -642,7 +642,7 @@ void afb_req_x2_verbose( { va_list args; va_start(args, fmt); - afb_req_x2_verbose(req, level, file, line, func, fmt, args); + afb_req_x2_vverbose(req, level, file, line, func, fmt, args); va_end(args); } |