From 88a5f079b459f91627c19e2d1150dca345b18f95 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 27 Jan 2003 13:32:44 +0000 Subject: (print_stat): Use ST_NBLOCKS rather than `->st_blocks'. --- src/stat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stat.c') diff --git a/src/stat.c b/src/stat.c index e4f9dd514..61afafb2a 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"); -- cgit v1.2.3-54-g00ecf