Changeset 1114
- Timestamp:
- Jan 29, 2004, 11:16:51 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/stabshll.c
-
Property cvs2svn:cvs-rev
changed from
1.30
to1.31
r1113 r1114 569 569 { 570 570 int len = sst.size - subrec_start - 2; 571 /* -- experimental... 571 572 if (len > 1000) 572 573 error ("sst_end: Record too big"); 574 */ 573 575 sst.buf[subrec_start] = (len >> 8) | 0x80; 574 576 sst.buf[subrec_start + 1] = 0xff & len; … … 3720 3722 { 3721 3723 int cch; 3724 if (type != SST_tag2 && (cch = strlen(name)) > 250) 3725 type = SST_tag2; 3726 3722 3727 sst_start (type); 3723 3728 buffer_word (&sst, index); 3724 if (type == SST_tag2 || (cch = strlen(name)) > 250)3729 if (type == SST_tag2) 3725 3730 buffer_enc (&sst, name); 3726 3731 else -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.