X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fhtmlsubtitles.c;h=8ce66e0b27e3602b5b16a8c9990d66853760f689;hb=6ad61e30a16d338eab23b649365813fb150066ef;hp=d9221ba16b0fb7f6265c8365144fda1507dee97f;hpb=92219ef4ac01b00e630b39cb19e8fbd17fdb63d0;p=ffmpeg diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c index d9221ba16b0..8ce66e0b27e 100644 --- a/libavcodec/htmlsubtitles.c +++ b/libavcodec/htmlsubtitles.c @@ -55,7 +55,7 @@ static int scanbraces(const char* in) { if (strncmp(in, "{\\an", 4) != 0) { return 0; } - if (!isdigit(in[4])) { + if (!av_isdigit(in[4])) { return 0; } if (in[5] != '}') {