diff options
author | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-11-25 10:24:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2019-11-25 10:24:15 +0000 |
commit | b3ee2ed8602c909f8d5096e9d8d44aa345093566 (patch) | |
tree | eeb8356ceae8b25d02e93ccab97fda31625c4ba1 /ctrl/libhicnctrl | |
parent | 4bdc720d1a7d13f19eae6ba7e14b00cbfbd37ce0 (diff) | |
parent | aac4a3d3163ee4085fc00426cf31fe3143dd191e (diff) |
Merge "[HICN-408] add a face manager interface for face priority control"
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 e7caf4f1c..ea4ed69c2 100644 --- a/ctrl/libhicnctrl/src/api.c +++ b/ctrl/libhicnctrl/src/api.c @@ -2268,7 +2268,7 @@ hc_face_get(hc_sock_t * s, hc_face_t * face, hc_face_t ** face_found) int rc = hc_face_snprintf(face_s, MAXSZ_HC_FACE, face); if (rc >= MAXSZ_HC_FACE) WARN("[hc_face_get] Unexpected truncation of face string"); - DEBUG("[hc_face_get] face=%s"); + DEBUG("[hc_face_get] face=%s", face_s); switch(face->face.type) { |