[argyllcms] Re: Bug in dispcal
- From: Graeme Gill <graeme@xxxxxxxxxxxxx>
- To: argyllcms@xxxxxxxxxxxxx
- Date: Sun, 10 Dec 2006 14:04:52 +1100
The Ultra quality (-qu) flag in dispcal doesn't work because this switch
statement references a char instead of an int:
case '2': /* Ultra */
Should be:
case 2: /* Ultra */
Thanks. I haven't tested this very often, it takes too long...
Graeme Gill.
- References:
- [argyllcms] Bug in dispcal
- From: william . wood
Other related posts:
- » [argyllcms] Bug in dispcal
- » [argyllcms] Re: Bug in dispcal
The Ultra quality (-qu) flag in dispcal doesn't work because this switch statement references a char instead of an int: case '2': /* Ultra */ Should be: case 2: /* Ultra */
- [argyllcms] Bug in dispcal
- From: william . wood