1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

rtp: fix compiler error

This commit is contained in:
Steffen Vogel 2019-02-06 17:31:27 +01:00
parent ea5d59b5d3
commit 8135284361

View file

@ -274,6 +274,9 @@ char * rtp_print(struct node *n)
case RTCP_THROTTLE_DISABLED:
throttle_mode = "disabled";
break;
default:
throttle_mode = "unknown";
}
strcatf(&buf, ", rtcp.mode=%s, rtcp.throttle_mode=%s", mode, throttle_mode);