From: Martin Mares Date: Fri, 27 Jun 2014 14:57:00 +0000 (+0200) Subject: Opt: Constification continues X-Git-Tag: v6.1~13 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=b53fdc2f88be1f12ef0700594913e4f7911aa29d;p=libucw.git Opt: Constification continues --- diff --git a/ucw/opt-conf.c b/ucw/opt-conf.c index 3db998b9..c29f23b9 100644 --- a/ucw/opt-conf.c +++ b/ucw/opt-conf.c @@ -40,14 +40,14 @@ static void opt_conf_check(struct opt_context *oc) } } -void opt_handle_config(struct opt_item * opt UNUSED, const char * value, void * data) +void opt_handle_config(const struct opt_item * opt UNUSED, const char * value, void * data) { opt_conf_check(data); if (cf_load(value)) exit(1); // Error message is already printed by cf_load() } -void opt_handle_set(struct opt_item * opt UNUSED, const char * value, void * data) +void opt_handle_set(const struct opt_item * opt UNUSED, const char * value, void * data) { opt_conf_check(data); struct cf_context *cc = cf_get_context(); @@ -56,7 +56,7 @@ void opt_handle_set(struct opt_item * opt UNUSED, const char * value, void * dat opt_failure("Cannot set %s", value); } -void opt_handle_dumpconfig(struct opt_item * opt UNUSED, const char * value UNUSED, void * data UNUSED) +void opt_handle_dumpconfig(const struct opt_item * opt UNUSED, const char * value UNUSED, void * data UNUSED) { struct cf_context *cc = cf_get_context(); opt_conf_end_of_options(cc); @@ -66,7 +66,7 @@ void opt_handle_dumpconfig(struct opt_item * opt UNUSED, const char * value UNUS exit(0); } -void opt_conf_hook_internal(struct opt_item * opt, uint event, const char * value UNUSED, void * data) { +void opt_conf_hook_internal(const struct opt_item * opt, uint event, const char * value UNUSED, void * data) { struct opt_context *oc = data; struct cf_context *cc = cf_get_context(); diff --git a/ucw/opt-help.c b/ucw/opt-help.c index ff982238..f71fec14 100644 --- a/ucw/opt-help.c +++ b/ucw/opt-help.c @@ -156,7 +156,7 @@ void opt_help(const struct opt_section * sec) { mp_delete(h.pool); } -void opt_handle_help(struct opt_item * opt UNUSED, const char * value UNUSED, void * data) +void opt_handle_help(const struct opt_item * opt UNUSED, const char * value UNUSED, void * data) { struct opt_context *oc = data; opt_help(oc->options); diff --git a/ucw/opt.h b/ucw/opt.h index 82c76bba..695f607e 100644 --- a/ucw/opt.h +++ b/ucw/opt.h @@ -298,7 +298,7 @@ int opt_parse(const struct opt_section * options, char ** argv); void opt_failure(const char * mesg, ...) FORMAT_CHECK(printf,1,2) NONRET; void opt_help(const struct opt_section * sec); -void opt_handle_help(struct opt_item * opt, const char * value, void * data); +void opt_handle_help(const struct opt_item * opt, const char * value, void * data); /*** * [[conf]] @@ -347,10 +347,10 @@ void opt_handle_help(struct opt_item * opt, const char * value, void * data); #define OPT_CONF_DUMPCONFIG OPT_CALL(0, "dumpconfig", opt_handle_dumpconfig, NULL, OPT_INTERNAL | OPT_NO_VALUE, "\tDump program configuration") #define OPT_CONF_HOOK OPT_HOOK(opt_conf_hook_internal, NULL, OPT_HOOK_BEFORE_VALUE | OPT_HOOK_FINAL | OPT_HOOK_INTERNAL) -void opt_handle_config(struct opt_item * opt, const char * value, void * data); -void opt_handle_set(struct opt_item * opt, const char * value, void * data); -void opt_handle_dumpconfig(struct opt_item * opt, const char * value, void * data); -void opt_conf_hook_internal(struct opt_item * opt, uint event, const char * value, void * data); +void opt_handle_config(const struct opt_item * opt, const char * value, void * data); +void opt_handle_set(const struct opt_item * opt, const char * value, void * data); +void opt_handle_dumpconfig(const struct opt_item * opt, const char * value, void * data); +void opt_conf_hook_internal(const struct opt_item * opt, uint event, const char * value, void * data); // XXX: This is duplicated with , but that one will hopefully go away one day. /**