diff options
Diffstat (limited to 'ext/mplex/yuv4mpeg_ratio.cc')
-rw-r--r-- | ext/mplex/yuv4mpeg_ratio.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/yuv4mpeg_ratio.cc b/ext/mplex/yuv4mpeg_ratio.cc index a20a2373..262df6f9 100644 --- a/ext/mplex/yuv4mpeg_ratio.cc +++ b/ext/mplex/yuv4mpeg_ratio.cc @@ -109,7 +109,7 @@ y4m_ratio_reduce (y4m_ratio_t * r) int y4m_parse_ratio (y4m_ratio_t * r, const char *s) { - char *t = strchr (s, ':'); + char *t = (char *) strchr (s, ':'); if (t == NULL) return Y4M_ERR_RANGE; |