summaryrefslogtreecommitdiff
path: root/examples/sunny.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 /examples/sunny.c
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'examples/sunny.c')
-rw-r--r--examples/sunny.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/sunny.c b/examples/sunny.c
index 2a22757e89..9cfd8bcbc0 100644
--- a/examples/sunny.c
+++ b/examples/sunny.c
@@ -55,10 +55,10 @@ activate (GApplication *application)
static void
open (GApplication *application,
GFile **files,
- gint n_files,
+ int n_files,
const gchar *hint)
{
- gint i;
+ int i;
for (i = 0; i < n_files; i++)
new_window (application, files[i]);