diff options
author | Moritz Schulte <moritz@duesseldorf.ccc.de> | 2002-12-09 15:51:25 +0000 |
---|---|---|
committer | Moritz Schulte <moritz@duesseldorf.ccc.de> | 2002-12-09 15:51:25 +0000 |
commit | d2f48d1aa103653da9c807a65b869637fe828d9c (patch) | |
tree | fc99439118dacedb565114527f0d8bc68a9c1745 /lib.h | |
parent | b80dd16fe47ef62557afdfac1bc1c7a1f1490788 (diff) |
2002-12-09 Moritz Schulte <moritz@duesseldorf.ccc.de>
* lib.h: Fix pointer arg.
* lib.c (dir_entries_get): Likewise.
* lib.c (dir_entries_get): Fix typo.
(dir_entries_get): Change type of data_size to size_t.
* node.c (node_entries_get): Change type of dirent_data_size to
size_t.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -46,7 +46,8 @@ *DIRENT_DATA_SIZE and a list of pointers to the dirent structures in *DIRENT_LIST. */ error_t dir_entries_get (file_t dir, char **dirent_data, - int *dirent_data_size, struct dirent **dirent_list); + size_t *dirent_data_size, + struct dirent ***dirent_list); /* Lookup the file named NAME beneath DIR (or the cwd, if DIR is not a valid port. Try to open with FLAGS0 first, and if that fails with |