summaryrefslogtreecommitdiff
path: root/bootmain.c
diff options
context:
space:
mode:
authorrtm <rtm>2007-08-24 14:56:17 +0000
committerrtm <rtm>2007-08-24 14:56:17 +0000
commit2036534834841641edf3a6d1e142c4798e146b7b (patch)
tree2f2b1bbeff631d55d7ec0dc1bd0b5271723e95bf /bootmain.c
parentb55513796f2234d1fbdb816015506f981befb60d (diff)
downloadxv6-labs-2036534834841641edf3a6d1e142c4798e146b7b.tar.gz
xv6-labs-2036534834841641edf3a6d1e142c4798e146b7b.tar.bz2
xv6-labs-2036534834841641edf3a6d1e142c4798e146b7b.zip
add missing iput() at end of _namei()
Diffstat (limited to 'bootmain.c')
-rw-r--r--bootmain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootmain.c b/bootmain.c
index 1882aa8..6494c16 100644
--- a/bootmain.c
+++ b/bootmain.c
@@ -12,7 +12,7 @@
// BOOT UP STEPS
// * when the CPU boots it loads the BIOS into memory and executes it
//
-// * the BIOS intializes devices, sets of the interrupt routines, and
+// * the BIOS intializes devices, sets up the interrupt routines, and
// reads the first sector of the boot device(e.g., hard-drive)
// into memory and jumps to it.
//