Changeset 510 for trunk/thune/make.c
- Timestamp:
- 02/10/08 23:53:46 (9 months ago)
- Files:
-
- 1 modified
-
trunk/thune/make.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/make.c
r508 r510 1582 1582 n = ur_stringToInt( spA, spB, 0 ); 1583 1583 } 1584 } 1585 } 1586 else if( ur_binarySlice(ut, tos, &spA, &spB) ) 1587 { 1588 if( (spB - spA) > 3 ) 1589 { 1590 // Load 32-bit big-endian number. 1591 uint8_t* bp = (uint8_t*) spA; 1592 n = (bp[0] << 24) | (bp[1] << 16) | 1593 (bp[2] << 8) | bp[3]; 1584 1594 } 1585 1595 }
