diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-30 06:53:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-30 06:53:48 +0000 |
commit | 69b3602370538d6a76b8ade41a7ae12939613759 (patch) | |
tree | 26d0b452d3cd6036299df691ada4110ab26abc61 | |
parent | 62ca87751e6aba49388117fcf71d613d40a8900f (diff) |
Wall; Andreas.Gunnarsson@emw.ericsson.se
-rw-r--r-- | include/tzfile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tzfile.h b/include/tzfile.h index 5ec8a50d588..e2a5c0fe292 100644 --- a/include/tzfile.h +++ b/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_ */ |