0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00

cf_error(char *msg, ...) -> cf_error(const char *msg, ...)

This commit is contained in:
Pavel Tvrdík 2016-03-09 16:48:28 +01:00
parent 43fd8fae52
commit 1a7daab126
2 changed files with 2 additions and 2 deletions

View File

@ -504,7 +504,7 @@ order_shutdown(void)
* error in the configuration.
*/
void
cf_error(char *msg, ...)
cf_error(const char *msg, ...)
{
char buf[1024];
va_list args;

View File

@ -68,7 +68,7 @@ int config_commit(struct config *, int type, int timeout);
int config_confirm(void);
int config_undo(void);
void config_init(void);
void cf_error(char *msg, ...) NORET;
void cf_error(const char *msg, ...) NORET;
void config_add_obstacle(struct config *);
void config_del_obstacle(struct config *);
void order_shutdown(void);