ANDROID: Incremental fs: Fix 32-bit build

This commit fixes the error:

fs/incfs/pseudo_files.c:1165:17: error: incompatible types when assigning to
type ‘struct timespec’ from type ‘struct timespec64’

Fixes: 664b74271565 ("ANDROID: Incremental fs: Separate pseudo-file code")
Signed-off-by: Paul Lawrence <paullawrence@google.com>
Change-Id: I0cf24954787c42d475a66ffe0646c47a307bcc26
diff --git a/fs/incfs/pseudo_files.c b/fs/incfs/pseudo_files.c
index bdb533f..d81b3f7 100644
--- a/fs/incfs/pseudo_files.c
+++ b/fs/incfs/pseudo_files.c
@@ -1162,7 +1162,7 @@
  ******************************************************************************/
 static bool get_pseudo_inode(int ino, struct inode *inode)
 {
-	inode->i_ctime = (struct timespec64){};
+	inode->i_ctime = (struct timespec){};
 	inode->i_mtime = inode->i_ctime;
 	inode->i_atime = inode->i_ctime;
 	inode->i_size = 0;