Browse code

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>

Michael Niedermayer authored on 2015/05/10 23:28:37
Showing 1 changed files
... ...
@@ -737,7 +737,7 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
737 737
         /* replace stuff from the replace Table */
738 738
         for(i=0; replaceTable[2*i]; i++){
739 739
             if(!strcmp(replaceTable[2*i], filterName)){
740
-                int newlen= strlen(replaceTable[2*i + 1]);
740
+                size_t newlen = strlen(replaceTable[2*i + 1]);
741 741
                 int plen;
742 742
                 int spaceLeft;
743 743