# HG changeset patch # User Carnë Draug # Date 1425250334 0 # Node ID fa68a3f7dd8a7b3265789109467e5490b6e501d9 # Parent e814e202cd8449b2d98860758a268066dc6cea00 __magick_read__.cc: add warning id for possibly low Magick quantum depth. diff -r e814e202cd84 -r fa68a3f7dd8a libinterp/dldfcn/__magick_read__.cc --- a/libinterp/dldfcn/__magick_read__.cc Sat Feb 28 03:44:00 2015 -0600 +++ b/libinterp/dldfcn/__magick_read__.cc Sun Mar 01 22:52:14 2015 +0000 @@ -710,8 +710,9 @@ setlocale (LC_ALL, locale.c_str ()); if (QuantumDepth < 32) - warning ("your version of %s limits images to %d bits per pixel", - MagickPackageName, QuantumDepth); + warning_with_id ("Octave:GraphicsMagic-Quantum-Depth", + "your version of %s limits images to %d bits per pixel", + MagickPackageName, QuantumDepth); initialized = true; }