diff options
author | raveit65 <[email protected]> | 2017-05-07 19:25:57 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-05-28 09:52:32 +0200 |
commit | fe3c32f28c1a06344d1ab0cec13e0e36b5ba2da9 (patch) | |
tree | 17518e3ac956f4f4b2406d8bbe03c60ae9247444 /libslab/app-resizer.c | |
parent | 1cf9dfa0cc20c3aa6ab43b06c0f2ee72a3b28b33 (diff) | |
download | mate-control-center-fe3c32f28c1a06344d1ab0cec13e0e36b5ba2da9.tar.bz2 mate-control-center-fe3c32f28c1a06344d1ab0cec13e0e36b5ba2da9.tar.xz |
app-resizer: fix a build warning
Diffstat (limited to 'libslab/app-resizer.c')
-rw-r--r-- | libslab/app-resizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libslab/app-resizer.c b/libslab/app-resizer.c index 5aadcb86..d26303be 100644 --- a/libslab/app-resizer.c +++ b/libslab/app-resizer.c @@ -81,7 +81,7 @@ resize_table (GtkTable * table, gint columns, GList * launcher_list) static void relayout_table (GtkTable * table, GList * element_list) { - gint maxcols, maxrows; + guint maxcols, maxrows; gtk_table_get_size (GTK_TABLE (table), &maxrows, &maxcols); gint row = 0, col = 0; do |