shithub: sox

Download patch

ref: 2e70428b90fcaa851427c3ebc557d9f4a8e19853
parent: b182b778f439e7290cdb65e5456a460221cecc6f
author: robs <robs>
date: Sat Nov 25 03:37:17 EST 2006

Tidied stderr output when using -S and warnings occur.

--- a/src/sox.c
+++ b/src/sox.c
@@ -287,9 +287,9 @@
     if (status)
     {
         if (user_abort)
-            fprintf(stderr, "\n\nAborted.\n");
+            fprintf(stderr, "Aborted.\n");
         else
-            fprintf(stderr, "\n\nDone.\n");
+            fprintf(stderr, "Done.\n");
     }
 
     return(0);
@@ -828,6 +828,11 @@
       /* Don't write if output is indicating errors. */
       if (writing && file_desc[file_count-1]->st_errno == 0)
         drain_effect_out();
+    }
+
+    if (status)
+    {
+      fputs("\n\n", stderr);
     }
 
     if (soxmix)