summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-02-15 07:35:24 -0500
committerraveit65 <[email protected]>2020-02-24 23:53:50 +0100
commit8a51a1c7e6ed94c1fab8ef6e96ad2666c9386ff5 (patch)
treec3cc72d3b0511249b17312e812040c9b94738a37 /shell
parentc43b30c157cf5e05a0c4b3294460194e19ff6411 (diff)
downloadatril-8a51a1c7e6ed94c1fab8ef6e96ad2666c9386ff5.tar.bz2
atril-8a51a1c7e6ed94c1fab8ef6e96ad2666c9386ff5.tar.xz
Use int64_t for g_date_time_to_unix even word size is 32-bit wide
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index e4cbce93..70dce57f 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -2190,7 +2190,7 @@ set_uri_mtime (GFile *source,
EvWindow *ev_window)
{
GFileInfo *info;
- gint utime = -1;
+ gint64 utime = -1;
info = g_file_query_info_finish (source, async_result, NULL);
if (info) {