diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-29 22:36:01 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-29 22:42:17 +0100 |
commit | 263af41f25779c36585d6c17668a15fa07163c4e (patch) | |
tree | 3d758782a37eafac78e85e49ab8c41d8f6beb3e1 /libdiskfs/boot-start.c | |
parent | 8b87e8c44466f6852c9544c908edef8075757dda (diff) |
fix compiler warnings in hurd/libdiskfs
Diffstat (limited to 'libdiskfs/boot-start.c')
-rw-r--r-- | libdiskfs/boot-start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c index 731d8c6d..60bf33dd 100644 --- a/libdiskfs/boot-start.c +++ b/libdiskfs/boot-start.c @@ -228,8 +228,8 @@ diskfs_start_bootstrap () } lookup_init: - err = dir_lookup (root_pt, initname, O_READ, 0, - &retry, pathbuf, &startup_pt); + err = dir_lookup (root_pt, (char *) initname, O_READ, 0, &retry, pathbuf, + &startup_pt); init_lookups++; if (err) { |