]> git.ipfire.org Git - thirdparty/git.git/blobdiff - strbuf.c
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / strbuf.c
index 00abeb55afdd68089676d2007fbfd248b5a45e79..dd9eb85527ab5a2f5007907b2cb3ce76ed5ccc3f 100644 (file)
--- a/strbuf.c
+++ b/strbuf.c
@@ -875,9 +875,9 @@ static void strbuf_humanise(struct strbuf *buf, off_t bytes,
                strbuf_addf(buf,
                                humanise_rate == 0 ?
                                        /* TRANSLATORS: IEC 80000-13:2008 byte */
-                                       Q_("%u byte", "%u bytes", (unsigned)bytes) :
+                                       Q_("%u byte", "%u bytes", bytes) :
                                        /* TRANSLATORS: IEC 80000-13:2008 byte/second */
-                                       Q_("%u byte/s", "%u bytes/s", (unsigned)bytes),
+                                       Q_("%u byte/s", "%u bytes/s", bytes),
                                (unsigned)bytes);
        }
 }