Skip to content

Commit 4961f46

Browse files
author
Marc Stern
committed
(re)fixed const type
1 parent 243ac05 commit 4961f46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apache2/apache2_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
const char* id_log(msre_rule* rule) {
3535
assert(rule != NULL);
3636
assert(rule->actionset != NULL);
37-
char* id = rule->actionset->id;
37+
const char* id = rule->actionset->id;
3838
if (!id || !*id || id == NOT_SET_P) id = apr_psprintf(rule->ruleset->mp, "%s (%d)", rule->filename, rule->line_num);
3939
return id;
4040
}

0 commit comments

Comments
 (0)