[Tizen] Fix SVACE issue (phase 2) 38/302638/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Wed, 6 Dec 2023 02:04:50 +0000 (11:04 +0900)
committerEunki Hong <eunkiki.hong@samsung.com>
Mon, 11 Dec 2023 10:05:28 +0000 (19:05 +0900)
Change-Id: Ic7d2d1a60fbb746876bb03761c7ab84b5ad2a3a0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
builder/dali-builder.cpp

index e7e33e6..1befb73 100644 (file)
@@ -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