Cosmetics: Eradicate gint

Remove a handful of errant uses of gint.
This commit is contained in:
Matthias Clasen 2021-06-03 17:40:49 -04:00
parent 3ab97fac1f
commit 578db92973
3 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ typedef struct
struct {
float width;
float height;
gint uniform_data_len;
int uniform_data_len;
guchar uniform_data[32];
} gl_shader;
};

View File

@ -93,7 +93,7 @@ type_name_mangle (const char *name,
gboolean split_first_cap)
{
GString *symbol_name = g_string_new ("");
gint i;
int i;
for (i = 0; name[i] != '\0'; i++)
{
@ -300,7 +300,7 @@ main (int argc, char **argv)
{
const GType *all_types;
guint n_types = 0, i;
gint result;
int result;
/* These must be set before before gtk_test_init */
g_setenv ("GIO_USE_VFS", "local", TRUE);

View File

@ -89,7 +89,7 @@ print_attr_list (PangoAttrList *attrs, GString *string)
iter = pango_attr_list_get_iterator (attrs);
do {
gint start, end;
int start, end;
GSList *list, *l;
pango_attr_iterator_range (iter, &start, &end);