diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-03-17 23:58:33 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2023-03-21 10:53:10 +0100 |
commit | e59c401c840f379e64945734969db03b0e55ef22 (patch) | |
tree | a6a643a8a308c098a923931e02b0b8dfaf61c128 /src/plugins | |
parent | e5e8ff221a08939b43edf488fa2a3b8fe95169ea (diff) | |
download | profani-tty-e59c401c840f379e64945734969db03b0e55ef22.tar.gz |
Adapt to g_string_free glib 2.75.3 change
glib 2.75.3 changes warning behaviour of `g_string_free()`. See: * https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3219 * https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3226 Use this opportunity to replace the use of GString with `g_strdup_printf()` where possible. Otherwise correctly take the return value of `g_string_free()` which is nicer anyways.
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/c_api.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/c_api.c b/src/plugins/c_api.c index 9f54d94d..cda40c4d 100644 --- a/src/plugins/c_api.c +++ b/src/plugins/c_api.c @@ -540,13 +540,9 @@ c_api_init(void) static char* _c_plugin_name(const char* filename) { - GString* plugin_name_str = g_string_new(""); gchar* name = g_strndup(filename, strlen(filename) - 1); - g_string_append(plugin_name_str, name); + gchar* result = g_strdup_printf("%sso", name); g_free(name); - g_string_append(plugin_name_str, "so"); - char* result = plugin_name_str->str; - g_string_free(plugin_name_str, FALSE); return result; } |