Browse Source

tar: use nlink_t for link counts

* src/create.c (struct link): nlink is now of type nlink_t, not size_t.
Paul Eggert 14 năm trước cách đây
mục cha
commit
09f039050e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/create.c

+ 1 - 1
src/create.c

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