Commit 667e7e81 authored by Michael Meyling's avatar Michael Meyling

[trackrdrd] test_config.c: function signature format changed

parent bc26adc3
...@@ -114,8 +114,8 @@ saveConfig(const char * fname) ...@@ -114,8 +114,8 @@ saveConfig(const char * fname)
return 0; return 0;
} }
static char * static char
test_CONF_Init(void) *test_CONF_Init(void)
{ {
printf("... testing CONF_Init\n"); printf("... testing CONF_Init\n");
...@@ -129,8 +129,8 @@ test_CONF_Init(void) ...@@ -129,8 +129,8 @@ test_CONF_Init(void)
} }
static char * static char
readAndCompare(const char * confName) *readAndCompare(const char * confName)
{ {
int err; int err;
char confNameNew[512]; char confNameNew[512];
...@@ -151,8 +151,8 @@ readAndCompare(const char * confName) ...@@ -151,8 +151,8 @@ readAndCompare(const char * confName)
return NULL; return NULL;
} }
static const char * static const char
test_CONF_ReadDefault(void) *test_CONF_ReadDefault(void)
{ {
printf("... testing CONF_ReadDefault\n"); printf("... testing CONF_ReadDefault\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment