]> git.sesse.net Git - mlt/commitdiff
Remove unused string.h include
authorJanne Liljeblad <janne.liljeblad@gmail.com>
Tue, 18 Mar 2014 19:19:31 +0000 (21:19 +0200)
committerJanne Liljeblad <janne.liljeblad@gmail.com>
Tue, 18 Mar 2014 19:19:31 +0000 (21:19 +0200)
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)