app: fix GStatBuf warning on gimpconfig-file.c

Fixes the following warning:
> passing argument 2 of 'g_stat' from incompatible pointer type
This commit is contained in:
lillolollo 2019-09-15 18:08:54 +00:00 committed by Jehan
parent c98edaf101
commit a94a286576
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ gimp_config_file_copy (const gchar *source,
gchar buffer[8192];
FILE *sfile;
FILE *dfile;
struct stat stat_buf;
GStatBuf stat_buf;
gint nbytes;
gint unwritten_len = 0;
GRegex *old_options_regexp = NULL;