mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-15 14:50:06 +00:00
Merge branch 'egl-format-string' into 'main'
egl: Fix invalid format string See merge request GNOME/gtk!4722
This commit is contained in:
commit
c4f423694f
@ -1622,10 +1622,10 @@ gdk_display_check_egl_extensions (EGLDisplay egl_display,
|
|||||||
/* translators: Arguments are the number of missing extensions
|
/* translators: Arguments are the number of missing extensions
|
||||||
* followed by a comma-separated list of their names */
|
* followed by a comma-separated list of their names */
|
||||||
g_dngettext (GETTEXT_PACKAGE,
|
g_dngettext (GETTEXT_PACKAGE,
|
||||||
"EGL implementation is missing extension %2$s",
|
"EGL implementation is missing extension %s",
|
||||||
"EGL implementation is missing %d extensions: %s",
|
"EGL implementation is missing %2$d extensions: %1$s",
|
||||||
n_missing),
|
n_missing),
|
||||||
(int) n_missing, missing->str);
|
missing->str, (int) n_missing);
|
||||||
|
|
||||||
g_string_free (missing, TRUE);
|
g_string_free (missing, TRUE);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user