One last gcc-4.6 warning fixed

This commit is contained in:
Vince Weaver 2012-05-02 11:36:40 -04:00
parent 38d90a85ec
commit 4ba1159da0
1 changed files with 2 additions and 1 deletions

View File

@ -551,7 +551,8 @@ static int dos33_add_file(int fd,char type,char *filename,
/* read from input */
bytes_read=read(input_fd,sector_buffer,BYTES_PER_SECTOR);
if (bytes_read<0) fprintf(stderr,"Error reading bytes!\n");
/* write to disk image */
lseek(fd,DISK_OFFSET((data_ts>>8)&0xff,data_ts&0xff),SEEK_SET);
result=write(fd,sector_buffer,BYTES_PER_SECTOR);