projects
/
platform
/
core
/
uifw
/
dali-demo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54bc211
)
Fix SVACE issue (phase 2)
67/302367/1
author
Eunki, Hong
<eunkiki.hong@samsung.com>
Wed, 6 Dec 2023 02:04:50 +0000
(11:04 +0900)
committer
Eunki, Hong
<eunkiki.hong@samsung.com>
Wed, 6 Dec 2023 02:04:50 +0000
(11:04 +0900)
Change-Id: Ic7d2d1a60fbb746876bb03761c7ab84b5ad2a3a0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
builder/dali-builder.cpp
patch
|
blob
|
history
diff --git
a/builder/dali-builder.cpp
b/builder/dali-builder.cpp
index
e7e33e6
..
1befb73
100644
(file)
--- a/
builder/dali-builder.cpp
+++ b/
builder/dali-builder.cpp
@@
-140,7
+140,7
@@
bool FileWatcher::FileHasChanged(void)
{
if(buf.st_mtime > mLastTime)
{
- mLastTime =
buf.st_mtime
;
+ mLastTime =
std::time_t(buf.st_mtime)
;
return true;
}
else