Merge branch 'refactor' of http://192.168.0.10:3000/pandx/WLG into refactor

This commit is contained in:
pandx 2024-11-13 10:41:27 +08:00
commit 58301c496f

View File

@ -1515,7 +1515,7 @@ int writeStringVlaue(const char *section, const char *key, char *val, const char
} }
memset(sect, 0, SECTION_MAX_LEN); memset(sect, 0, SECTION_MAX_LEN);
sprintf(sect, "[%s]", section); sprintf(sect, "[%s]", section);
IniWriteValue(section, key, val, file); IniWriteValue(sect, key, val, file);
return 0; return 0;
} }