1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

vfs: fix readdir return value documentation

This commit is contained in:
Vincent Dupont 2017-04-03 10:42:43 +02:00
parent dab3de5ea7
commit e56c4f3553

View File

@ -652,7 +652,8 @@ int vfs_opendir(vfs_DIR *dirp, const char *dirname);
* @param[in] dirp pointer to open directory
* @param[out] entry directory entry information
*
* @return 0 on success
* @return 1 if @p entry was updated
* @return 0 if @p dirp has reached the end of the directory index
* @return <0 on error
*/
int vfs_readdir(vfs_DIR *dirp, vfs_dirent_t *entry);