Fix line wrapping.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 12 May 2005 04:15:47 +0000 (04:15 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 12 May 2005 04:15:47 +0000 (04:15 +0000)
src/filesys/file.c

index e8818c0029383a7d3a0f139963874bf81021dbc2..a0028ec8f3fc2d0d634291df7d4cd2667b9940cf 100644 (file)
@@ -67,8 +67,7 @@ file_read (struct file *file, void *buffer, off_t size)
    Returns the number of bytes actually read,
    which may be less than SIZE if end of file is reached. */
 off_t
-file_read_at (struct file *file, void *buffer_, off_t size,
-              off_t file_ofs) 
+file_read_at (struct file *file, void *buffer_, off_t size, off_t file_ofs) 
 {
   uint8_t *buffer = buffer_;
   off_t bytes_read = 0;