diff options
author | peadar <peadar@FreeBSD.org> | 2004-05-12 21:38:39 +0000 |
---|---|---|
committer | peadar <peadar@FreeBSD.org> | 2004-05-12 21:38:39 +0000 |
commit | ffbf3dfefddedd27ca8a4b4961a9ae5d89802723 (patch) | |
tree | d8fc61e870f3320e715a2360327822714b1a3834 /include | |
parent | 8f6801f678798f16b265e179d24b47e1c3554b67 (diff) | |
download | FreeBSD-src-ffbf3dfefddedd27ca8a4b4961a9ae5d89802723.zip FreeBSD-src-ffbf3dfefddedd27ca8a4b4961a9ae5d89802723.tar.gz |
Fix some^Wseveral style bugs from last commit.
Remove "sys/types.h" as "sys/param.h" is already included
Use cast rather than back-pointer to convert from public to private
version of FTS data, and so avoid littering fts.h with any of the
details.
Pointed out By: bde, kientzle
Diffstat (limited to 'include')
-rw-r--r-- | include/fts.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/fts.h b/include/fts.h index 20dfbfe..09c4600 100644 --- a/include/fts.h +++ b/include/fts.h @@ -63,7 +63,6 @@ typedef struct { #define FTS_STOP 0x200 /* (private) unrecoverable error */ int fts_options; /* fts_open options, global flags */ void *fts_clientptr; /* thunk for sort function */ - struct _fts_private *fts_priv; /* implementation data */ } FTS; typedef struct _ftsent { |