Remove prefs_free_string()

It just does a free.
Related to b580b9ef11
This commit is contained in:
Michael Vetter
2020-07-02 11:31:54 +02:00
parent 9774b0c550
commit e5ac12afa6
19 changed files with 138 additions and 145 deletions

View File

@@ -14,7 +14,7 @@ void statuses_console_defaults_to_all(void **state)
assert_non_null(setting);
assert_string_equal("all", setting);
prefs_free_string(setting);
g_free(setting);
}
void statuses_chat_defaults_to_all(void **state)
@@ -23,7 +23,7 @@ void statuses_chat_defaults_to_all(void **state)
assert_non_null(setting);
assert_string_equal("all", setting);
prefs_free_string(setting);
g_free(setting);
}
void statuses_muc_defaults_to_all(void **state)
@@ -32,5 +32,5 @@ void statuses_muc_defaults_to_all(void **state)
assert_non_null(setting);
assert_string_equal("all", setting);
prefs_free_string(setting);
g_free(setting);
}