[argyllcms] Bug in dispcal

Graeme,

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 */

- Bill

Other related posts: