Skip to content

Commit

Permalink
fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Mar 16, 2024
1 parent 544f27c commit b1de4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toxav/codecs/h264/codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,7 @@ VCSession *vc_new_h265(Logger *log, ToxAV *av, uint32_t friend_number, toxav_vid
x265_picture_init(param, vc->h265_in_pic);

vc->h265_encoder = x265_encoder_open(param);
LOGGER_API_WARNING(av->tox, "H265 encoder:h265_encoder=%p", vc->h265_encoder);
LOGGER_API_WARNING(av->tox, "H265 encoder:h265_encoder=%p", (void *)vc->h265_encoder);

x265_param_free(param);
LOGGER_API_WARNING(av->tox, "H265 encoder:h265_encoder:ready");
Expand Down

0 comments on commit b1de4ab

Please sign in to comment.