Removed strerror(); it's not available in the boot loader.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4668 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-09-13 00:59:34 +00:00
parent 687cfec3a8
commit 2f85616f33

View File

@ -313,7 +313,7 @@ mount_boot_file_systems()
status_t status = add_partitions_for(fd);
if (status < B_OK)
printf("add_partitions_for(%d) failed: %s\n", fd, strerror(status));
printf("add_partitions_for(%d) failed: %ld\n", fd, status);
close(fd);