mirror of https://github.com/GNOME/gimp.git
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:
parent
c98edaf101
commit
a94a286576
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue