Re: [PATCH] count-objects: output "KiB" instead of "kilobytes"

2013-04-02 Thread Mihai Capotă
I'm really sorry about that. I'll make sure to run the tests before sending patches in the future. On Wed, Apr 3, 2013 at 12:01 AM, Junio C Hamano wrote: > Mihai Capotă writes: > >> The code uses division by 1024. Also, the manual uses "KiB". >> >> Signed-off-by: Mihai Capotă >> --- >> builtin

Re: [PATCH] count-objects: output "KiB" instead of "kilobytes"

2013-04-02 Thread Junio C Hamano
Mihai Capotă writes: > The code uses division by 1024. Also, the manual uses "KiB". > > Signed-off-by: Mihai Capotă > --- > builtin/count-objects.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/count-objects.c b/builtin/count-objects.c > index 9afaa88..ecc1

Re: [PATCH] count-objects: output "KiB" instead of "kilobytes"

2013-04-02 Thread Junio C Hamano
Mihai Capotă writes: > The code uses division by 1024. Also, the manual uses "KiB". > > Signed-off-by: Mihai Capotă > --- > builtin/count-objects.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/count-objects.c b/builtin/count-objects.c > index 9afaa88..ecc1

[PATCH] count-objects: output "KiB" instead of "kilobytes"

2013-04-02 Thread Mihai Capotă
The code uses division by 1024. Also, the manual uses "KiB". Signed-off-by: Mihai Capotă --- builtin/count-objects.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/count-objects.c b/builtin/count-objects.c index 9afaa88..ecc13b0 100644 --- a/builtin/count-objects.