osmo_rtp_socket_poll(): Fix log message to match function name

Change-Id: I5c36bbc35e2ba794b5e446f52a0752bcf1367d11
This commit is contained in:
Max 2016-12-05 16:02:52 +01:00 committed by Neels Hofmeyr
parent b0a4235805
commit 78d0486ffd
1 changed files with 2 additions and 1 deletions

View File

@ -173,7 +173,8 @@ int osmo_rtp_socket_poll(struct osmo_rtp_socket *rs)
if (recv_with_cb(rs))
return 1;
LOGP(DLMIB, LOGL_INFO, "osmo_rtp_poll(%u): ERROR!\n", rs->rx_user_ts);
LOGP(DLMIB, LOGL_INFO, "osmo_rtp_socket_poll(%u): ERROR!\n",
rs->rx_user_ts);
return 0;
}