diff --git a/share/misc/style b/share/misc/style index 6c31d93a0953..5533dd214958 100644 --- a/share/misc/style +++ b/share/misc/style @@ -1,4 +1,4 @@ -/* $NetBSD: style,v 1.34 2005/08/20 09:03:29 rillig Exp $ */ +/* $NetBSD: style,v 1.35 2005/08/20 16:17:36 rillig Exp $ */ /* * The revision control tag appears first, with a blank line after it. @@ -29,7 +29,7 @@ #include __COPYRIGHT("@(#) Copyright (c) 2000\n\ The NetBSD Foundation, inc. All rights reserved.\n"); -__RCSID("$NetBSD: style,v 1.34 2005/08/20 09:03:29 rillig Exp $"); +__RCSID("$NetBSD: style,v 1.35 2005/08/20 16:17:36 rillig Exp $"); /* * VERY important single-line comments look like this. @@ -369,8 +369,7 @@ dirinfo(const char *p, struct stat *sb, struct dirent *de, struct statfs *sf, * To printf 64 bit quantities, use %lld and cast to (long long) * or use %llu and cast to (unsigned long long). */ - (void)printf("The size of %s is %llu\n", - p, (unsigned long long)sb->st_size); + (void)printf("The size of %s is %lld\n", p, (long long)sb->st_size); } /*