- spelling fix

This commit is contained in:
Bryce Denney 2002-08-29 14:07:17 +00:00
parent e43d822c32
commit 2fbf3206c1
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/*
* misc/bximage.c
* $Id: bximage.c,v 1.8 2002-08-01 07:35:00 vruppert Exp $
* $Id: bximage.c,v 1.9 2002-08-29 14:07:17 bdenney Exp $
*
* Create empty hard disk or floppy disk images for bochs.
*
@ -14,7 +14,7 @@
#include "config.h"
char *EOF_ERR = "ERROR: End of input";
char *rcsid = "$Id: bximage.c,v 1.8 2002-08-01 07:35:00 vruppert Exp $";
char *rcsid = "$Id: bximage.c,v 1.9 2002-08-29 14:07:17 bdenney Exp $";
char *divider = "========================================================================";
/* menu data for choosing floppy/hard disk */
@ -212,7 +212,7 @@ int make_image (int sec, char *filename)
printf ("\nWriting: [");
/*
* seek to sec*512-1 and write a signle character.
* seek to sec*512-1 and write a single character.
* can't just do: fseek(fp, 512*sec-1, SEEK_SET)
* because 512*sec may be too large for signed int.
*/