Inspection: Parameter names do not match

This commit is contained in:
Urs Fleisch
2024-01-20 21:57:09 +01:00
parent 790815bcf4
commit c3d73a26ff
5 changed files with 11 additions and 11 deletions

View File

@ -431,14 +431,14 @@ void _taglib_property_set(TagLib_File *file, const char* prop, const char* value
} // namespace
void taglib_property_set(TagLib_File *f, const char *prop, const char *value)
void taglib_property_set(TagLib_File *file, const char *prop, const char *value)
{
_taglib_property_set(f, prop, value, false);
_taglib_property_set(file, prop, value, false);
}
void taglib_property_set_append(TagLib_File *f, const char *prop, const char *value)
void taglib_property_set_append(TagLib_File *file, const char *prop, const char *value)
{
_taglib_property_set(f, prop, value, true);
_taglib_property_set(file, prop, value, true);
}
char** taglib_property_keys(const TagLib_File *file)