Fix typo in comment describing free_map_allocate().
[pintos-anon] / src / filesys / free-map.c
index 34f2060b1860f23d20ea29f5ed687ec4cbb7a139..db0dc4ae1905014fdd9a1acfa592e03643658381 100644 (file)
@@ -21,8 +21,9 @@ free_map_init (void)
 
 /* Allocates CNT consecutive sectors from the free map and stores
    the first into *SECTORP.
-   Returns true if successful, false if all sectors were
-   available. */
+   Returns true if successful, false if not enough consecutive
+   sectors were available or if the free_map file could not be
+   written. */
 bool
 free_map_allocate (size_t cnt, block_sector_t *sectorp)
 {