diff options
Diffstat (limited to 'src/jpilot.c')
-rw-r--r-- | src/jpilot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jpilot.c b/src/jpilot.c index c6e3f3ee..9df9916f 100644 --- a/src/jpilot.c +++ b/src/jpilot.c @@ -338,7 +338,7 @@ static gchar *jpilot_get_pc3_file( JPilotFile *pilotFile ) { */ static gboolean jpilot_mark_files( JPilotFile *pilotFile ) { gboolean retVal = FALSE; - struct stat filestat; + GStatBuf filestat; gchar *pcFile; /* Mark PDB file cache */ @@ -365,7 +365,7 @@ static gboolean jpilot_mark_files( JPilotFile *pilotFile ) { */ static gboolean jpilot_check_files( JPilotFile *pilotFile ) { gboolean retVal = TRUE; - struct stat filestat; + GStatBuf filestat; gchar *pcFile; /* Check main file */ |