# 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 --git a/libinterp/dldfcn/__magick_read__.cc b/libinterp/dldfcn/__magick_read__.cc --- a/libinterp/dldfcn/__magick_read__.cc +++ b/libinterp/dldfcn/__magick_read__.cc @@ -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; }