mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
devfs: bool -> int
Fixes buildworld after r364069
This commit is contained in:
parent
f9461246a2
commit
ca423b858b
2 changed files with 2 additions and 2 deletions
|
|
@ -192,7 +192,7 @@ char *devfs_fqpn(char *, struct devfs_mount *, struct devfs_dirent *,
|
|||
struct componentname *);
|
||||
void devfs_delete(struct devfs_mount *, struct devfs_dirent *, int);
|
||||
void devfs_dirent_free(struct devfs_dirent *);
|
||||
bool devfs_populate_needed(struct devfs_mount *dm);
|
||||
int devfs_populate_needed(struct devfs_mount *dm);
|
||||
void devfs_populate(struct devfs_mount *);
|
||||
void devfs_cleanup(struct devfs_mount *);
|
||||
void devfs_unmount_final(struct devfs_mount *);
|
||||
|
|
|
|||
|
|
@ -659,7 +659,7 @@ devfs_populate_loop(struct devfs_mount *dm, int cleanup)
|
|||
return (0);
|
||||
}
|
||||
|
||||
bool
|
||||
int
|
||||
devfs_populate_needed(struct devfs_mount *dm)
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue