From f44e950977c8d64038017d59a5277a9bc8e8afd0 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Mon, 30 Mar 1998 06:53:47 +0000 Subject: [PATCH] Wall; Andreas.Gunnarsson@emw.ericsson.se --- src/include/tzfile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/tzfile.h b/src/include/tzfile.h index 5ec8a50d..e2a5c0fe 100644 --- a/src/include/tzfile.h +++ b/src/include/tzfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tzfile.h,v 1.2 1997/09/21 10:45:59 niklas Exp $ */ +/* $OpenBSD: tzfile.h,v 1.3 1998/03/30 06:53:47 deraadt Exp $ */ /* $NetBSD: tzfile.h,v 1.3 1994/10/26 00:56:37 cgd Exp $ */ /* @@ -149,6 +149,6 @@ struct tzhead { ** that will probably do. */ -#define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) +#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) #endif /* !_TZFILE_H_ */