$NetBSD: patch-aa,v 1.6 2020/06/07 16:28:50 rillig Exp $

allow 64-bit time_t on 32-bit system

--- libgnome-desktop/gnome-desktop-thumbnail.c.orig	2013-11-21 11:14:44.000000000 +0000
+++ libgnome-desktop/gnome-desktop-thumbnail.c
@@ -1420,7 +1420,7 @@ gnome_desktop_thumbnail_is_valid (GdkPix
   thumb_mtime_str = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::MTime");
   if (!thumb_mtime_str)
     return FALSE;
-  thumb_mtime = atol (thumb_mtime_str);
+  thumb_mtime = atoll (thumb_mtime_str);
   if (mtime != thumb_mtime)
     return FALSE;
   
