From 5d690ffdcaab52712895b73a2ed8cc159010f9fc Mon Sep 17 00:00:00 2001
From: Pawel Andruszkiewicz
Date: Thu, 3 Mar 2016 09:42:11 +0100
Subject: [PATCH] [Filesystem] Type of variable changed to match assigned
value.
Fixes: SVACE 26378
Change-Id: Ie33787a957d5789326b51604aa696a07a47d1574
Signed-off-by: Pawel Andruszkiewicz
---
src/filesystem/filesystem_stat.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/filesystem/filesystem_stat.h b/src/filesystem/filesystem_stat.h
index 62b78373..87e7e478 100755
--- a/src/filesystem/filesystem_stat.h
+++ b/src/filesystem/filesystem_stat.h
@@ -16,6 +16,7 @@
#ifndef FILESYSTEM_FILESYSTEM_STAT_H
#define FILESYSTEM_FILESYSTEM_STAT_H
+#include
#include
#include "common/picojson.h"
@@ -36,8 +37,8 @@ class FilesystemStat {
bool isFile;
bool isDirectory;
bool readOnly;
- uint64_t ctime;
- uint64_t mtime;
+ std::time_t ctime;
+ std::time_t mtime;
size_t size;
size_t nlink;
--
2.34.1