Remove unused function from lib/base/string.c as it breaks with -Werror.

This commit is contained in:
Roland C. Dowdeswell
2012-06-26 22:14:47 +01:00
parent 2f17afacda
commit 01e7b326b6

View File

@@ -159,16 +159,6 @@ heim_string_create_with_bytes(const void *data, size_t len)
return s;
}
/*
*
*/
static void
string_free(void *ptr)
{
free(ptr);
}
/**
* Create a string object using a format string
*