Work around gcc issue: change (0x1fe-0x3a) to (0x1fe - 0x3a), to avoid missinterpretation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22742 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2007-10-26 22:14:52 +00:00
parent 0e596fcaf9
commit 8161a0aff8

View File

@ -83,11 +83,9 @@ struct atari_boot_block {
uint16 num_sectors;
uint32 load_addr;
uint32 fat_buffer;
/*(0x003a-0x002e)*/
#define ATARI_BB_FILENAME_SZ 0xc
#define ATARI_BB_FILENAME_SZ (0x003a - 0x002e)
char filename[ATARI_BB_FILENAME_SZ];
/*(0x01fe-0x003a)*/
#define ATARI_BB_BOOTCODE_SZ 0x1c4
#define ATARI_BB_BOOTCODE_SZ (0x01fe - 0x003a)
uint8 bootcode[ATARI_BB_BOOTCODE_SZ];
uint16 checksum; /* 0x1234 if bootable */
};