From e81160def298a80d49d59779aa1bb2c6329618f4 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 25 Jun 2003 14:48:34 +0000 Subject: 18634: Tomi Vainio: work around problem with latest Sun k2 compiler --- Src/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/system.h') diff --git a/Src/system.h b/Src/system.h index c9e1a5a27..d7372924b 100644 --- a/Src/system.h +++ b/Src/system.h @@ -418,7 +418,7 @@ struct timezone { * converted to printable decimal form including the sign and the * * terminating null character. Below 0.30103 > lg 2. * * BDIGBUFSIZE is for a number converted to printable binary form. */ -#define DIGBUFSIZE ((int)(((sizeof(zlong) * 8) - 1) * 0.30103) + 3) +#define DIGBUFSIZE ((int)(((sizeof(zlong) * 8) - 1) * 30103/100000) + 3) #define BDIGBUFSIZE ((int)((sizeof(zlong) * 8) + 4)) /* If your stat macros are broken, we will * -- cgit 1.4.1