Changeset 219 in xtideuniversalbios for trunk/Serial_Server/library/Image.cpp
- Timestamp:
- Jan 25, 2012, 7:04:43 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Serial_Server/library/Image.cpp
r217 r219 10 10 #include <stdlib.h> 11 11 #include <string.h> 12 #include <stdio.h> 12 13 13 14 Image::Image( char *name, int p_readOnly, int p_drive ) … … 82 83 sizef = totallba/2048.0; 83 84 if( useCHS ) 84 log( 0, "Opening '%s', CHS geometry %u:%u:%u, total size %.1lf MB", name, cyl, sect, head, sizef );85 else 86 log( 0, "Opening '%s', total lba%lu, total size %.1lf MB", name, totallba, sizef );85 log( 0, "Opening '%s', CHS geometry %u:%u:%u, total LBA %lu, total size %.1lf MB", name, cyl, sect, head, totallba, sizef ); 86 else 87 log( 0, "Opening '%s', total LBA %lu, total size %.1lf MB", name, totallba, sizef ); 87 88 } 88 89
Note:
See TracChangeset
for help on using the changeset viewer.