diff options
author | grant <grant@pkgsrc.org> | 2003-12-19 22:23:00 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-19 22:23:00 +0000 |
commit | d1ddf046041850152da427f2e10af3c8a4bbd363 (patch) | |
tree | eb2f9418bc5b8a65aed945ce6ae926c74ee223ea /pkgtools/libnbcompat | |
parent | 621e5446aec6779b88b6213b2793d27e6d53e67a (diff) | |
download | pkgsrc-d1ddf046041850152da427f2e10af3c8a4bbd363.tar.gz |
Apply change from src/include/fts.h 1.10:
Make fts_pathlen and fts_nitems unsigned.
Diffstat (limited to 'pkgtools/libnbcompat')
-rw-r--r-- | pkgtools/libnbcompat/files/nbcompat/fts.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/libnbcompat/files/nbcompat/fts.h b/pkgtools/libnbcompat/files/nbcompat/fts.h index a91f7ee23f6..f7a6df1a867 100644 --- a/pkgtools/libnbcompat/files/nbcompat/fts.h +++ b/pkgtools/libnbcompat/files/nbcompat/fts.h @@ -1,4 +1,4 @@ -/* $NetBSD: fts.h,v 1.2 2003/12/19 22:16:14 grant Exp $ */ +/* $NetBSD: fts.h,v 1.3 2003/12/19 22:23:00 grant Exp $ */ /* * Copyright (c) 1989, 1993 @@ -41,8 +41,8 @@ typedef struct { dev_t fts_dev; /* starting device # */ char *fts_path; /* path for this descent */ int fts_rfd; /* fd for root */ - int fts_pathlen; /* sizeof(path) */ - int fts_nitems; /* elements in the sort array */ + u_int fts_pathlen; /* sizeof(path) */ + u_int fts_nitems; /* elements in the sort array */ int (*fts_compar) /* compare function */ (const struct _ftsent **, const struct _ftsent **); |