tar: use nlink_t for link counts

* src/create.c (struct link): nlink is now of type nlink_t, not size_t.
This commit is contained in:
Paul Eggert
2010-08-23 13:49:28 -07:00
parent 34795cedb7
commit 09f039050e

View File

@@ -30,7 +30,7 @@ struct link
{
dev_t dev;
ino_t ino;
size_t nlink;
nlink_t nlink;
char name[1];
};