1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: Fixed ICECAST_LOG_DEBUG()'s format string

This commit is contained in:
Philipp Schafft 2018-06-20 12:33:34 +00:00
parent 526ecdaa8b
commit b10406df20

View File

@ -845,7 +845,7 @@ static inline void ebml_check_track(ebml_t *ebml)
&& ebml->parsing_track_number != EBML_UNKNOWN) {
ebml->keyframe_track_number = ebml->parsing_track_number;
ICECAST_LOG_DEBUG("Identified track #%ffu as the video track", ebml->keyframe_track_number);
ICECAST_LOG_DEBUG("Identified track #%llu as the video track", (long long unsigned int)ebml->keyframe_track_number);
}
}