Changeset 318
- Timestamp:
- Jun 11, 2003, 6:59:40 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/listomf.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r317 r318 1269 1269 rec_idx = next; 1270 1270 rec_len = total_rec_len; 1271 1272 if (hex_dump) 1273 { 1274 int len = rec_idx - start; 1275 printf (" hexdump:\n"); 1276 rec_idx = start; 1277 dump_block (len, 3); 1278 } 1271 1279 } 1272 1280 } … … 1422 1430 static void list_types (void) 1423 1431 { 1424 int total_rec_len, type, qual, len, next, flags ;1432 int total_rec_len, type, qual, len, next, flags, start; 1425 1433 int args, max_args, fields; 1426 1434 dword size; … … 1432 1440 len = get_word (); 1433 1441 next = rec_idx + len; 1442 start = rec_idx; 1434 1443 type = get_byte (); 1435 1444 qual = get_byte (); … … 1754 1763 show_fid (); 1755 1764 printf (", maximum: "); 1765 show_fid (); 1766 printf (", name: "); 1756 1767 show_fid (); 1757 1768 printf ("\n"); … … 1816 1827 rec_idx = next; 1817 1828 rec_len = total_rec_len; 1829 1830 if (hex_dump) 1831 { 1832 int len = rec_idx - start; 1833 printf (" hexdump:\n"); 1834 rec_idx = start; 1835 dump_block (len, 3); 1836 } 1818 1837 } 1819 1838 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.