From: Eric Andersen Date: Mon, 22 Jan 2001 22:50:01 +0000 (-0000) Subject: Fix silly typo X-Git-Tag: 0_49~45 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e132119f07fc286bca75504cc4a225d527507b38;p=oweals%2Fbusybox.git Fix silly typo --- diff --git a/coreutils/df.c b/coreutils/df.c index aa04682a7..22797fbae 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -46,7 +46,7 @@ static int df(char *device, const char *mountPoint) if (s.f_blocks > 0) { blocks_used = s.f_blocks - s.f_bfree; if(0 == blocks_used) - blocs_percent_used = 0; + blocks_percent_used = 0; else blocks_percent_used = (long) (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5); diff --git a/df.c b/df.c index aa04682a7..22797fbae 100644 --- a/df.c +++ b/df.c @@ -46,7 +46,7 @@ static int df(char *device, const char *mountPoint) if (s.f_blocks > 0) { blocks_used = s.f_blocks - s.f_bfree; if(0 == blocks_used) - blocs_percent_used = 0; + blocks_percent_used = 0; else blocks_percent_used = (long) (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5);