]> git.sesse.net Git - mlt/blobdiff - src/modules/core/filter_brightness.c
Remove unused string.h include
[mlt] / src / modules / core / filter_brightness.c
index be06e432ea05ee2abe3bb5929d430e7e92007782..bc692c64605583785f7ab3d0f2776a10bbaedf8c 100644 (file)
@@ -24,7 +24,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <math.h>
-#include <string.h>
 
 #define CLAMP( x, min, max ) (x) < (min) ? (min) : (x) > (max) ? (max) : (x)