summaryrefslogtreecommitdiff
path: root/gdk/x11/gdkproperty-x11.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 15:54:49 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch)
tree8dc515efd6e0c0b0da1d7e02049f284edd6050ff /gdk/x11/gdkproperty-x11.c
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'gdk/x11/gdkproperty-x11.c')
-rw-r--r--gdk/x11/gdkproperty-x11.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdk/x11/gdkproperty-x11.c b/gdk/x11/gdkproperty-x11.c
index 4755d895a5..fd6ddca2fb 100644
--- a/gdk/x11/gdkproperty-x11.c
+++ b/gdk/x11/gdkproperty-x11.c
@@ -103,12 +103,12 @@ gdk_x11_get_xatom_by_name_for_display (GdkDisplay *display,
void
_gdk_x11_precache_atoms (GdkDisplay *display,
const gchar * const *atom_names,
- gint n_atoms)
+ int n_atoms)
{
Atom *xatoms;
const char **xatom_names;
- gint n_xatoms;
- gint i;
+ int n_xatoms;
+ int i;
xatoms = g_new (Atom, n_atoms);
xatom_names = g_new (const char *, n_atoms);