From: Jim Meyering Date: Mon, 27 Jan 2003 13:32:44 +0000 (+0000) Subject: (print_stat): Use ST_NBLOCKS rather than `->st_blocks'. X-Git-Tag: v4.5.5~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88a5f079b459f91627c19e2d1150dca345b18f95;p=thirdparty%2Fcoreutils.git (print_stat): Use ST_NBLOCKS rather than `->st_blocks'. --- diff --git a/src/stat.c b/src/stat.c index e4f9dd514e..61afafb2a9 100644 --- a/src/stat.c +++ b/src/stat.c @@ -1,5 +1,5 @@ /* stat.c -- display file or filesystem status - Copyright (C) 2001, 2002 Free Software Foundation. + Copyright (C) 2001, 2002, 2003 Free Software Foundation. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -531,7 +531,7 @@ print_stat (char *pformat, char m, char const *filename, void const *data) break; case 'b': strcat (pformat, "u"); - printf (pformat, (unsigned int) statbuf->st_blocks); + printf (pformat, (unsigned int) ST_NBLOCKS (*statbuf)); break; case 'o': strcat (pformat, "d");