diff options
author | bde <bde@FreeBSD.org> | 2004-05-10 09:36:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-05-10 09:36:26 +0000 |
commit | 34afa157e85a40c98a5b55e48fc8e14cb76bd5b3 (patch) | |
tree | 3194c1618df27b3660ce131038cb4e99ddffb4aa /include/fts.h | |
parent | a76a166318061c274fa93583c420c9e3d1b0fa75 (diff) | |
download | FreeBSD-src-34afa157e85a40c98a5b55e48fc8e14cb76bd5b3.zip FreeBSD-src-34afa157e85a40c98a5b55e48fc8e14cb76bd5b3.tar.gz |
Fixed style bugs in previous commit (bogus forward declaration and
inconsistent capitalization in comments).
Diffstat (limited to 'include/fts.h')
-rw-r--r-- | include/fts.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/fts.h b/include/fts.h index dbf82c9..20dfbfe 100644 --- a/include/fts.h +++ b/include/fts.h @@ -37,8 +37,6 @@ #ifndef _FTS_H_ #define _FTS_H_ -struct _fts_private; /* implementation data */ - typedef struct { struct _ftsent *fts_cur; /* current node */ struct _ftsent *fts_child; /* linked list of children */ @@ -65,7 +63,7 @@ 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 */ + struct _fts_private *fts_priv; /* implementation data */ } FTS; typedef struct _ftsent { |