diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-01-02 16:33:03 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-01-02 16:33:03 -0800 |
commit | 7d1a9bbb9b343e128cbfbc3567ab329f22edbd5a (patch) | |
tree | 713ed190b8c0211ea4f6de740500878929f7799c | |
parent | 04869663109a86188677a5e65d8b68d6850a5c27 (diff) |
Old uncommitted fix for Android build
-rw-r--r-- | util.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -479,7 +479,8 @@ time_t get_modification_time(char *path) #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 } |