aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2012-06-29 08:26:42 +0200
committermaximilian attems <max@stro.at>2012-06-29 08:26:42 +0200
commit96dfc60bacbbbef57bf15deaa5556f19cf47492b (patch)
treefc88f76560c3b7fcff1a5db5a9f413f85ac79095
parent1ec8e824a0b0ee10e93b257ccac08f07cd90f4d8 (diff)
downloadklibc-96dfc60bacbbbef57bf15deaa5556f19cf47492b.tar.gz
[klibc] include: [ppc64/klibc/archstat.h] get rid of nlink_t use
It is a unsigned long on ppc64, see 0fd7bee1e9b68fd271ad87c3e705facd1ca38055 in linux. Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--usr/include/arch/ppc64/klibc/archstat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/include/arch/ppc64/klibc/archstat.h b/usr/include/arch/ppc64/klibc/archstat.h
index 491316cedc05d7..918d81021b1a93 100644
--- a/usr/include/arch/ppc64/klibc/archstat.h
+++ b/usr/include/arch/ppc64/klibc/archstat.h
@@ -8,7 +8,7 @@
struct stat {
__stdev64 (st_dev);
ino_t st_ino;
- nlink_t st_nlink;
+ unsigned long st_nlink;
mode_t st_mode;
uid_t st_uid;
gid_t st_gid;