diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-13 13:03:38 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-13 13:03:38 -0400 |
commit | 9c25d5e2f13239fc5bd5a6d73778b01f799fe70a (patch) | |
tree | 31a3a749bd6fc228baf67513f9d93054e0263a5a /include/ini.h | |
parent | eb04d1bf3e50bf6121e48f0e08aac0d95fd34c81 (diff) | |
download | stasis-9c25d5e2f13239fc5bd5a6d73778b01f799fe70a.tar.gz |
Value argument can be constant
Diffstat (limited to 'include/ini.h')
-rw-r--r-- | include/ini.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ini.h b/include/ini.h index fa2bd98..022a066 100644 --- a/include/ini.h +++ b/include/ini.h @@ -98,7 +98,7 @@ struct INIFILE *ini_open(const char *filename); * @param value * @return */ -struct INISection *ini_section_search(struct INIFILE **ini, unsigned mode, char *value); +struct INISection *ini_section_search(struct INIFILE **ini, unsigned mode, const char *value); /** * |