comparison ifo_read.c @ 61:eac01aeb7be5 src

Fix some spelling issues
author siretart
date Sun, 08 Aug 2010 22:49:28 +0000
parents bfefcc426154
children 46c05a214511
comparison
equal deleted inserted replaced
60:aa36b2d85f8d 61:eac01aeb7be5
1626 1626
1627 /* assert(info_length / sizeof(cell_adr_t) >= c_adt->nr_of_vobs); 1627 /* assert(info_length / sizeof(cell_adr_t) >= c_adt->nr_of_vobs);
1628 Enemy of the State region 2 (de) has Titles where nr_of_vobs field 1628 Enemy of the State region 2 (de) has Titles where nr_of_vobs field
1629 is to high, they high ones are never referenced though. */ 1629 is to high, they high ones are never referenced though. */
1630 if(info_length / sizeof(cell_adr_t) < c_adt->nr_of_vobs) { 1630 if(info_length / sizeof(cell_adr_t) < c_adt->nr_of_vobs) {
1631 fprintf(stderr, "libdvdread: *C_ADT nr_of_vobs > avaiable info entries\n"); 1631 fprintf(stderr, "libdvdread: *C_ADT nr_of_vobs > available info entries\n");
1632 c_adt->nr_of_vobs = info_length / sizeof(cell_adr_t); 1632 c_adt->nr_of_vobs = info_length / sizeof(cell_adr_t);
1633 } 1633 }
1634 1634
1635 c_adt->cell_adr_table = (cell_adr_t *)malloc(info_length); 1635 c_adt->cell_adr_table = (cell_adr_t *)malloc(info_length);
1636 if(!c_adt->cell_adr_table) 1636 if(!c_adt->cell_adr_table)