# HG changeset patch # User Michael Pavone # Date 1483403583 28800 # Node ID 160e3f597cecff44c1984ee666af5c7849984e0c # Parent 25268334a24ca78a53ff631ad8c0b73ab249c78c Old uncommitted fix for Android build diff -r 25268334a24c -r 160e3f597cec util.c --- a/util.c Mon Jan 02 16:25:13 2017 -0800 +++ b/util.c Mon Jan 02 16:33:03 2017 -0800 @@ -479,7 +479,8 @@ #ifdef __APPLE__ return st.st_mtimespec.tv_sec; #else - return st.st_mtim.tv_sec; + //Android's Bionic doesn't support the new style so we'll use the old one instead + return st.st_mtime; #endif }