Skip to content

Commit

Permalink
fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlf committed Apr 19, 2019
1 parent 7a9f7d2 commit f264e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/media_tools/mpd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ static GF_Err gf_m3u8_fill_mpd_struct(MasterPlaylist *pl, const char *m3u8_file,
byte_range_media_file = elt->url;
url->URL = gf_strdup(byte_range_media_file);
} else {
u32 url_len = strlen(base_url);
u32 url_len = (u32) strlen(base_url);
if (strncmp(base_url, mpd_file, url_len)) {
GF_MPD_BaseURL *url;
GF_SAFEALLOC(url, GF_MPD_BaseURL);
Expand Down

0 comments on commit f264e8a

Please sign in to comment.