diff options
author | rbuj <[email protected]> | 2020-02-15 07:35:24 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-24 23:55:31 +0100 |
commit | 50c4edb5b8ee02b3eb81137787a4f8698a5466bc (patch) | |
tree | 758fe3673ee804859d28b2fd20f4242b726e2137 | |
parent | 0d4746154b5a621c156c7ecaa671d708457a8ac2 (diff) | |
download | atril-50c4edb5b8ee02b3eb81137787a4f8698a5466bc.tar.bz2 atril-50c4edb5b8ee02b3eb81137787a4f8698a5466bc.tar.xz |
Use int64_t for g_date_time_to_unix even word size is 32-bit wide
-rw-r--r-- | shell/ev-window.c | 2 |
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) { |