remove incorrect NONNULLARG1 on read_config_file

This commit is contained in:
nhmall
2023-12-18 12:40:31 -05:00
parent 088717ccec
commit 08a1e68166

View File

@@ -1005,7 +1005,9 @@ extern boolean can_read_file(const char *) NONNULLARG1;
extern void config_error_init(boolean, const char *, boolean); extern void config_error_init(boolean, const char *, boolean);
extern void config_erradd(const char *); extern void config_erradd(const char *);
extern int config_error_done(void); extern int config_error_done(void);
extern boolean read_config_file(const char *, int) NONNULLARG1; /* arg1 of read_config_file can be NULL to pass through
* to fopen_config_file() to mean 'use the default config file name' */
extern boolean read_config_file(const char *, int);
extern void check_recordfile(const char *); extern void check_recordfile(const char *);
extern void read_wizkit(void); extern void read_wizkit(void);
extern boolean parse_conf_str(const char *str, boolean (*proc)(char *)); extern boolean parse_conf_str(const char *str, boolean (*proc)(char *));