Changed the last argument of _kern_mount() to be a string rather than a void pointer.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9691 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-11-01 00:25:25 +00:00
parent 7c8bb86f70
commit eef5d24c90
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ extern status_t _kern_get_next_image_info(team_id team, int32 *cookie, image_in
// VFS functions
extern status_t _kern_mount(const char *path, const char *device,
const char *fs_name, uint32 flags, void *args);
const char *fs_name, uint32 flags, const char *args);
extern status_t _kern_unmount(const char *path);
extern status_t _kern_read_fs_info(dev_t device, struct fs_info *info);
extern status_t _kern_write_fs_info(dev_t device, const struct fs_info *info, int mask);

View File

@ -87,7 +87,7 @@ status_t vfs_normalize_path(const char *path, char *buffer, size_t bufferSize,
/* calls the syscall dispatcher should use for user file I/O */
status_t _user_mount(const char *path, const char *device, const char *fs_name,
uint32 flags, void *args);
uint32 flags, const char *args);
status_t _user_unmount(const char *path);
status_t _user_read_fs_info(dev_t device, struct fs_info *info);
status_t _user_write_fs_info(dev_t device, const struct fs_info *info, int mask);