diff options
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r-- | libgfortran/io/unix.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index d385b040c9e..011d426471b 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -1287,7 +1287,6 @@ find_file (const char *file, gfc_charlen_type file_len) char path[PATH_MAX + 1]; struct stat st[2]; gfc_unit *u; - uint64_t id; if (unpack_filename (path, file, file_len)) return NULL; @@ -1296,9 +1295,7 @@ find_file (const char *file, gfc_charlen_type file_len) return NULL; #if defined(__MINGW32__) && !HAVE_WORKING_STAT - id = id_from_path (path); -#else - id = 0; + id_from_path (path); #endif __gthread_mutex_lock (&unit_lock); |