shithub: opus-tools

Download patch

ref: d104fb7e216fd8a8e5b7a13e125b60ad64621dab
parent: 1165ebbe1bc2b420ae8486506e043982b8d9a6b1
author: Mark Harris <mark.hsj@gmail.com>
date: Mon Jun 9 09:45:13 EDT 2014

Fix a typo in a warning message.

Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>

--- a/src/info_opus.c
+++ b/src/info_opus.c
@@ -226,7 +226,7 @@
                   else inf->firstgranule=0;
                 }
             }
-            if(inf->total_samples<gp-inf->firstgranule)oi_warn(_("WARNING: Sample count behind granule (%" I64FORMAT ">%" I64FORMAT ") in stream %d\n"),
+            if(inf->total_samples<gp-inf->firstgranule)oi_warn(_("WARNING: Sample count behind granule (%" I64FORMAT "<%" I64FORMAT ") in stream %d\n"),
                 (long long)inf->total_samples,(long long)(gp-inf->firstgranule),stream->num);
             if(!ogg_page_eos(page) && (inf->total_samples>gp-inf->firstgranule))
                 oi_warn(_("WARNING: Sample count ahead of granule (%" I64FORMAT ">%" I64FORMAT ") in stream %d\n"),