https://bugzilla.novell.com/show_bug.cgi?id=364365 User casualprogrammer@yahoo.com added comment https://bugzilla.novell.com/show_bug.cgi?id=364365#c14 --- Comment #14 from Casual J. Programmer <casualprogrammer@yahoo.com> 2008-02-28 05:49:40 MST --- Not sure what I am missing: fs/partitions/msdos.c: In function ‘msdos_partition’: fs/partitions/msdos.c:446: error: dereferencing pointer to incomplete type fs/partitions/msdos.c:446: error: dereferencing pointer to incomplete type fs/partitions/msdos.c:446: error: implicit declaration of function ‘FAT_VALID_MEDIA’ fs/partitions/msdos.c:446: error: dereferencing pointer to incomplete type make[2]: *** [fs/partitions/msdos.o] Error 1 make[1]: *** [fs/partitions] Error 2 make: *** [fs] Error 2 /* * Now that the 55aa signature is present, this is probably * either the boot sector of a FAT filesystem or a DOS-type * partition table. Reject this in case the boot indicator * is not 0 or 0x80. */ fb = (struct fat_boot_sector *) data; 446 if (fb->reserved && fb->fats && FAT_VALID_MEDIA(fb->media)) { printk("\n"); put_dev_sector(sect); return 1; } p = (struct partition *) (data + 0x1be); for (slot = 1; slot <= 4; slot++, p++) { if (p->boot_ind != 0 && p->boot_ind != 0x80) { put_dev_sector(sect); return 0; } } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.