changeset 20219:b39ba1bbb759

Don't print unecessary backtrace for GraphicsMagick warning about pixel depth. * __magick_read__.cc (maybe_initialize_magick): End warning_with_id() call with "\n" to suppress backtrace.
author Rik <rik@octave.org>
date Sat, 23 May 2015 22:11:25 -0700
parents b2100e1659ac
children 5d6a2c4caf05
files libinterp/dldfcn/__magick_read__.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/dldfcn/__magick_read__.cc	Sat May 23 21:46:44 2015 -0700
+++ b/libinterp/dldfcn/__magick_read__.cc	Sat May 23 22:11:25 2015 -0700
@@ -711,7 +711,7 @@
 
       if (QuantumDepth < 32)
         warning_with_id ("Octave:GraphicsMagic-Quantum-Depth",
-                         "your version of %s limits images to %d bits per pixel",
+                         "your version of %s limits images to %d bits per pixel\n",
                          MagickPackageName, QuantumDepth);
 
       initialized = true;