Changeset 5533
- Timestamp:
- 10/26/07 16:08:20 (6 years ago)
- Files:
-
- 1 modified
-
SigProc/trunk/SigProc/utility.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
SigProc/trunk/SigProc/utility.cpp
r5531 r5533 183 183 req_output_length += ( d.rem > 0 ) ? 1 : 0; 184 184 if ( output_length < req_output_length ) { 185 perror("ERROR: sigprocc_pack_bytes: output too short\n");185 perror("ERROR: SigProc::pack_bytes: output too short\n"); 186 186 return; 187 187 } … … 222 222 223 223 if ( output_length < 8*input_length ) { 224 perror("ERROR: sigprocc_unpack_bytes: output too short\n");224 perror("ERROR: SigProc::unpack_bytes: output too short\n"); 225 225 return; 226 226 } … … 254 254 req_output_length += ( d.rem > 0 ) ? 1 : 0; 255 255 if ( output_length < req_output_length ) { 256 perror("ERROR: sigprocc_repack_bytes: output too short\n");256 perror("ERROR: SigProc::repack_bytes: output too short\n"); 257 257 return; 258 258 }