Fix the signature again, and also rest of the errors

Next time, remember to check with -Werror first...
This commit is contained in:
Petri Lehtinen 2013-04-15 09:13:29 +03:00
parent 42e307b3c5
commit 257a716073

View File

@ -9,8 +9,11 @@
#include <string.h>
#include "util.h"
static int encode_null_callback(char *buffer, size_t size, void *data)
static int encode_null_callback(const char *buffer, size_t size, void *data)
{
(void)buffer;
(void)size;
(void)data;
return 0;
}