Style: <space><tab> -> <tab>

This commit is contained in:
harti 2005-03-22 12:59:02 +00:00
parent bdf00a2e37
commit d8c301673b

View File

@ -63,8 +63,7 @@ __FBSDID("$FreeBSD$");
*
* Dir_MTime Return the modification time of a node. The file
* is searched for along the default search path.
* The path and mtime fields of the node are filled
* in.
* The path and mtime fields of the node are filled in.
*
* Dir_AddDir Add a directory to a search path.
*
@ -77,6 +76,7 @@ __FBSDID("$FreeBSD$");
* things that can be freed for the element as long
* as the element is no longer referenced by any other
* search path.
*
* Dir_ClearPath Resets a search path to the empty list.
*
* For debugging:
@ -175,9 +175,8 @@ __FBSDID("$FreeBSD$");
typedef struct Dir {
char *name; /* Name of directory */
int refCount; /* Number of paths with this directory */
int hits; /* Number of times a file in this dirextory has
* been found */
int refCount; /* No. of paths with this directory */
int hits; /* No. of times a file has been found here */
Hash_Table files; /* Hash table of files in directory */
} Dir;