diff options
-rw-r--r-- | thumbnails.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/thumbnails.c b/thumbnails.c index 33b0573..19cc817 100644 --- a/thumbnails.c +++ b/thumbnails.c @@ -1,5 +1,4 @@ #include <unistd.h> -#include <utime.h> #include <string.h> #include <glib/gstdio.h> @@ -23,10 +22,10 @@ inline static gchar *get_wall_thumb_name(const gchar *filepath) { } inline static time_t get_mtime(const gchar *filepath) { - struct utimbuf times; + struct stat sb; - if(g_utime(filepath, ×) == 0) { - return times.modtime; + if(g_stat(filepath, &sb) == 0) { + return sb.st_mtime; } else { return 0; } |