Changeset 257 for trunk/thune/files.c
- Timestamp:
- 08/28/06 15:52:42 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/files.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/files.c
r232 r257 131 131 UR_CALL( uc_sizeQ ) 132 132 { 133 //uint64_t size;134 133 const char* cp; 135 intsize;134 long long size; 136 135 137 136 UR_CALL_UNUSED_TH … … 145 144 ur_setNone(tos); 146 145 } 146 else if( size > INT32_MAX ) 147 { 148 ur_initType(tos, UT_INT64); 149 ur_int64(tos) = size; 150 } 147 151 else 148 152 { 149 153 ur_initType(tos, UT_INT); 150 ur_int(tos) = size;154 ur_int(tos) = (int) size; 151 155 } 152 156 }
