Costmetic

This commit is contained in:
Gregory Nutt 2016-07-17 17:01:35 -06:00
parent 006f4a5818
commit fe315f867a
2 changed files with 3 additions and 1 deletions

View File

@ -186,6 +186,8 @@ int host_dup(int fd)
void *host_opendir(const char *name) void *host_opendir(const char *name)
{ {
/* Return the host DIR pointer */
return (void *)opendir(name); return (void *)opendir(name);
} }

View File

@ -184,7 +184,7 @@ struct fs_unionfsdir_s
struct fs_hostfsdir_s struct fs_hostfsdir_s
{ {
FAR void * fs_dir; /* Opaque pointer to host DIR * */ FAR void *fs_dir; /* Opaque pointer to host DIR * */
}; };
#endif #endif