Don't suppress imagemagick and png2ff(1) warnings - farbfeld - suckless image format with conversion tools
 (HTM) git clone git://git.suckless.org/farbfeld
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 96d6bde7d9bb6a79b7f86fbbc285a49b9634cd63
 (DIR) parent 1f9d0c28423ae3e422327a8ee5422aac23391231
 (HTM) Author: Laslo Hunhold <dev@frign.de>
       Date:   Fri, 14 Apr 2017 17:51:40 +0200
       
       Don't suppress imagemagick and png2ff(1) warnings
       
       Else the user might be left wondering what happened. The output from
       imagemagick might not be the nicest in the world, but it's bearable for
       some given edge-cases.
       
       Diffstat:
         M 2ff                                 |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/2ff b/2ff
       @@ -25,7 +25,7 @@ else
                        jpg2ff < "$TMP"
                        ;;
                *)
       -                convert "$TMP" png:- 2>/dev/null | png2ff 2>/dev/null
       +                convert "$TMP" png:- | png2ff
                        ;;
                esac
        fi