diff options
Diffstat (limited to 'ctrl/facemgr')
-rw-r--r-- | ctrl/facemgr/src/interfaces/hicn_light/hicn_light.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrl/facemgr/src/interfaces/hicn_light/hicn_light.c b/ctrl/facemgr/src/interfaces/hicn_light/hicn_light.c index 3ebbee4a1..2fdc3f7c3 100644 --- a/ctrl/facemgr/src/interfaces/hicn_light/hicn_light.c +++ b/ctrl/facemgr/src/interfaces/hicn_light/hicn_light.c @@ -221,8 +221,8 @@ int hl_on_event(interface_t * interface, const facelet_t * facelet) ERROR("Face to update has not been found"); goto ERR; } - char conn_id_or_name[NAME_LEN]; - snprintf(conn_id_or_name, NAME_LEN, "%d", face_found->id); + char conn_id_or_name[SYMBOLIC_NAME_LEN]; + snprintf(conn_id_or_name, SYMBOLIC_NAME_LEN, "%d", face_found->id); free(face_found); printf("Face id = %d\n", face_found->id); |