Changeset 238:380bad9f6852 for dwt/internal/image/JPEGDecoder.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/internal/image/JPEGDecoder.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/image/JPEGDecoder.d
r200 r238 2289 2289 } 2290 2290 2291 static void error( char[]msg) {2291 static void error(String msg) { 2292 2292 DWT.error(DWT.ERROR_INVALID_IMAGE, null, msg); 2293 2293 } … … 5834 5834 /* For now, precision must match compiled-in value... */ 5835 5835 if (cinfo.data_precision !is BITS_IN_JSAMPLE) 5836 error(" [data precision=" ~ to!( char[])(cinfo.data_precision) ~ "]");5836 error(" [data precision=" ~ to!(String)(cinfo.data_precision) ~ "]"); 5837 5837 // ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo.data_precision); 5838 5838
