X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fliboconfig%2Fscanner.l;h=7a831c2a8f63390e8435adca419867c1a5604fc9;hb=b81104a423234c04f0eb4ace0ec5e93a363c917a;hp=638e3a232b3c688970194231b938c911a58b4186;hpb=a09f2fdf0450eb76317e1b7575a12ffb926068f4;p=collectd.git diff --git a/src/liboconfig/scanner.l b/src/liboconfig/scanner.l index 638e3a23..7a831c2a 100644 --- a/src/liboconfig/scanner.l +++ b/src/liboconfig/scanner.l @@ -28,6 +28,7 @@ %{ #include +#include #include "oconfig.h" #include "aux_types.h" #include "parser.h" @@ -145,7 +146,7 @@ static void ml_append (char *string) if (ml_free <= len) { ml_len += len - ml_free + 1; - ml_buffer = (char *)realloc (ml_buffer, ml_len); + ml_buffer = realloc (ml_buffer, ml_len); if (NULL == ml_buffer) YY_FATAL_ERROR ("out of dynamic memory in ml_append"); }