Skip to content

Commit ef60413

Browse files
sub/sd_sbr: fix pointer sign warning
1 parent ace0c24 commit ef60413

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sub/sd_sbr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ static void decode(struct sd *sd, struct demux_packet *packet)
150150

151151
ctx->sbr_subtitles = sbr_load_text(
152152
ctx->sbr_library,
153-
packet->buffer,
153+
(char *)packet->buffer,
154154
packet->len,
155155
fmt,
156156
sd->lang

0 commit comments

Comments
 (0)