diff options
author | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-11-19 17:44:06 +0100 |
---|---|---|
committer | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-11-19 17:44:06 +0100 |
commit | 76b2abe3c15564fc61dd4ff1f0372f25fa8031f1 (patch) | |
tree | 825fdeca2590073105f954a17fde4b551743b0ac /ctrl/libhicnctrl | |
parent | 40fde5ad542c30e59ac02639e29389085de89de5 (diff) |
[HICN-399] facemgr crashes after wifi disabled
Change-Id: I8d504b1e83f79d028f2e7bbfacda2824076aa72f
Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'ctrl/libhicnctrl')
-rw-r--r-- | ctrl/libhicnctrl/src/api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrl/libhicnctrl/src/api.c b/ctrl/libhicnctrl/src/api.c index 14ee69b53..1a5bd8cee 100644 --- a/ctrl/libhicnctrl/src/api.c +++ b/ctrl/libhicnctrl/src/api.c @@ -2308,7 +2308,7 @@ hc_face_delete(hc_sock_t * s, hc_face_t * face) int rc = hc_face_snprintf(face_s, MAXSZ_HC_FACE, face); if (rc >= MAXSZ_HC_FACE) WARN("[hc_face_delete] Unexpected truncation of face string"); - DEBUG("[hc_face_delete] face=%s"); + DEBUG("[hc_face_delete] face=%s", face_s); hc_connection_t connection; if (hc_face_to_connection(face, &connection, false) < 0) { |