summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-05-10 16:28:37 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-05-10 16:28:37 +0200
commit07cb6bf985e2c3fba795870a23accf8d2895758f (patch)
treeeb54f3d745adf3c0fbb5202ed83495a0b54ee979 /libpostproc/postprocess.c
parentd66b623ad07780d2265f392cbcf895f8b2f1199f (diff)
downloadffmpeg-07cb6bf985e2c3fba795870a23accf8d2895758f.tar.gz
postproc/postprocess: Use size_t to hold strlen()s value
This should make no difference but its more correct Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r--libpostproc/postprocess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index af70bb3eeb..acce0f273b 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -737,7 +737,7 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
/* replace stuff from the replace Table */
for(i=0; replaceTable[2*i]; i++){
if(!strcmp(replaceTable[2*i], filterName)){
- int newlen= strlen(replaceTable[2*i + 1]);
+ size_t newlen = strlen(replaceTable[2*i + 1]);
int plen;
int spaceLeft;