summaryrefslogtreecommitdiffstats
path: root/arts
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2019-04-09 18:49:43 +0900
committerSlávek Banko <slavek.banko@axis.cz>2019-04-11 17:48:29 +0200
commit99d8c77851f1789e86e6f6ddbcc6695efc6ad250 (patch)
tree624f77a89e898ab07938f97ce7a1cb0b2abe0d3e /arts
parentb6ae5c8687b722b0d8e5febc373be97e7391d055 (diff)
downloadtdemultimedia-99d8c77851f1789e86e6f6ddbcc6695efc6ad250.tar.gz
tdemultimedia-99d8c77851f1789e86e6f6ddbcc6695efc6ad250.zip
Fix for time_t != long
`time_t` may not be `long`, for examples, unsigned (long) int, long long int (64bit integer type on 32bit arch), double, and so on. Change to use difftime(3) to retrieve seconds. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 9b8b7c129917f2813e5f412fe08b6a153ca05981)
Diffstat (limited to 'arts')
-rw-r--r--arts/runtime/artsbuilderloader_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/arts/runtime/artsbuilderloader_impl.cc b/arts/runtime/artsbuilderloader_impl.cc
index ee009417..238daae2 100644
--- a/arts/runtime/artsbuilderloader_impl.cc
+++ b/arts/runtime/artsbuilderloader_impl.cc
@@ -247,7 +247,7 @@ public:
if( stat(filename.c_str(), &st) == 0 )
{
char mtime[32];
- sprintf(mtime,"[%ld]",st.st_mtime);
+ snprintf(mtime,sizeof(mtime),"[%.0f]",difftime(st.st_mtime, (time_t)0));
result += filename + mtime;
}
else