MXS-2302: Use const char* in hintfilter functions

This commit is contained in:
Markus Mäkelä
2019-02-15 11:58:20 +02:00
parent 11be8ed0f0
commit 897fee715d
3 changed files with 9 additions and 8 deletions

View File

@ -83,7 +83,7 @@ typedef struct hint
} HINT;
HINT* hint_alloc(HINT_TYPE, void*, unsigned int);
HINT* hint_create_parameter(HINT*, char*, const char*);
HINT* hint_create_parameter(HINT*, const char*, const char*);
HINT* hint_create_route(HINT*, HINT_TYPE, const char*);
HINT* hint_splice(HINT* head, HINT* list);
void hint_free(HINT*);