GUACAMOLE-465: Correct printf-style format string (should be "%s" for strings, not "%d").

This commit is contained in:
Michael Jumper 2020-06-24 13:31:45 -07:00
parent 4ac0940e81
commit af2c109079

View File

@ -483,7 +483,7 @@ int guacenc_video_free(guacenc_video* video) {
/* write trailer, if needed */
if (video->container_format_context != NULL &&
video->output_stream != NULL) {
guacenc_log(GUAC_LOG_DEBUG, "Writing trailer: %d",
guacenc_log(GUAC_LOG_DEBUG, "Writing trailer: %s",
av_write_trailer(video->container_format_context) == 0 ?
"success" : "failure");
}