diff options
Diffstat (limited to 'sys/boot/common/install.c')
-rw-r--r-- | sys/boot/common/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/install.c b/sys/boot/common/install.c index 1c2c82c..36e7c64 100644 --- a/sys/boot/common/install.c +++ b/sys/boot/common/install.c @@ -286,7 +286,7 @@ install(char *pkgname) } s = (inst_rootfs == NULL) ? "/install.iso" : inst_rootfs; - if (file_loadraw("mfs_root", s) == NULL) { + if (file_loadraw(s, "mfs_root") == NULL) { error = errno; command_errmsg = "cannot load root file system"; goto fail; |