GUACAMOLE-465: Correct printf-style format string (should be "%s" for strings, not "%d").
This commit is contained in:
parent
4ac0940e81
commit
af2c109079
@ -483,7 +483,7 @@ int guacenc_video_free(guacenc_video* video) {
|
|||||||
/* write trailer, if needed */
|
/* write trailer, if needed */
|
||||||
if (video->container_format_context != NULL &&
|
if (video->container_format_context != NULL &&
|
||||||
video->output_stream != 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 ?
|
av_write_trailer(video->container_format_context) == 0 ?
|
||||||
"success" : "failure");
|
"success" : "failure");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user