diff options
author | rbuj <[email protected]> | 2020-01-20 16:00:37 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-01-31 18:52:19 +0100 |
commit | a70e19a51423b855b9da8d7f9ed40d396a534c67 (patch) | |
tree | 1fe5414f810a3fadd3fbd88673987cad60d62aac /libdocument/ev-document-info.h | |
parent | e388b7032dda81917b05583c306a4b9690dcaa46 (diff) | |
download | atril-a70e19a51423b855b9da8d7f9ed40d396a534c67.tar.bz2 atril-a70e19a51423b855b9da8d7f9ed40d396a534c67.tar.xz |
Fix year 2038 issue with signed 32-bit integers
GTime is defined to always be a signed 32-bit integer, it will
overflow in the year 2038.
Diffstat (limited to 'libdocument/ev-document-info.h')
-rw-r--r-- | libdocument/ev-document-info.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdocument/ev-document-info.h b/libdocument/ev-document-info.h index 54a4e94e..49698bfc 100644 --- a/libdocument/ev-document-info.h +++ b/libdocument/ev-document-info.h @@ -115,8 +115,8 @@ struct _EvDocumentInfo char *producer; char *linearized; char *security; - GTime creation_date; - GTime modified_date; + gint64 creation_date; + gint64 modified_date; EvDocumentLayout layout; EvDocumentMode mode; guint ui_hints; |