Bug fixes.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 18 Sep 2004 17:01:47 +0000 (17:01 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 18 Sep 2004 17:01:47 +0000 (17:01 +0000)
src/utils/pintos

index 867f2c1c056348866aaad710edc456425fe263d5..9206629c0c801fe53249345de01bd12d66857528 100755 (executable)
@@ -51,7 +51,7 @@ while (@ARGV) {
        copy_pad ($hostfn, "scratch.dsk", 512);
 
        # Do copy.
-       run_vm ("-ci", $hostfn, $size, "-q");
+       run_vm ("-ci", $guestfn, $size, "-q");
        exit 0;
     } elsif ($arg eq 'get') {
        usage () if @ARGV != 1 && @ARGV != 2;
@@ -284,7 +284,7 @@ sub bochs_disk_line {
     return "" if !defined $file;
     my (%geom) = disk_geometry ($file);
     return "$device: type=disk, path=$file, mode=flat, "
-       . " cylinders=$geom{C}, heads=$geom{H}, spt=$geom{S}, "
+       . "cylinders=$geom{C}, heads=$geom{H}, spt=$geom{S}, "
        . "translation=none\n";
 }