fix: corriger la déclaration de reqin_log_module

Co-authored-by: aider (openrouter/openai/gpt-5.3-codex) <aider@aider.chat>
This commit is contained in:
Jacquin Antoine
2026-02-28 20:33:42 +01:00
parent 46291898e1
commit 77541f7500
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ static const command_rec reqin_log_cmds[] = {
};
/* Module definition */
module AP_MODULE_DECLARE_DATA reqin_log_module = {
AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module = {
STANDARD20_MODULE_STUFF,
NULL, /* per-directory config creator */
NULL, /* dir config merger */

View File

@ -32,6 +32,6 @@ typedef struct {
} reqin_log_config_t;
/* External module declaration */
extern module AP_MODULE_DECLARE_DATA reqin_log_module;
extern AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module;
#endif /* MOD_REQIN_LOG_H */