summaryrefslogtreecommitdiff
path: root/libtbd_stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtbd_stat.c')
-rw-r--r--libtbd_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libtbd_stat.c b/libtbd_stat.c
index a8e0a33..08fb639 100644
--- a/libtbd_stat.c
+++ b/libtbd_stat.c
@@ -88,9 +88,9 @@ tbd_stat_from_path(const char *name,
}
ret->rdev = (uint32_t)info.st_rdev;
- ret->uid = (uint32_t)info.st_uid;
- ret->gid = (uint32_t)info.st_gid;
- ret->mode = (uint32_t)info.st_mode;
+ ret->uid = (uid_t)info.st_uid;
+ ret->gid = (gid_t)info.st_gid;
+ ret->mode = (mode_t)info.st_mode;
ret->mtime = (time_t)info.st_mtime;
return ret;
}