From ce79ad5a19a0a7e24eaa026bf617992a312102cd Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 30 Apr 2006 16:25:58 +0000 Subject: [PATCH] Fix another insufficiently parenthesized macro expansion. --- src/lib/global/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/global/file.c b/src/lib/global/file.c index a9ace8ce..028c3fec 100644 --- a/src/lib/global/file.c +++ b/src/lib/global/file.c @@ -61,7 +61,7 @@ /* Initializers for members flags... */ /* Unmapped cache */ #define UNMAPPED_CACHE(type, flags) \ - sizeof(type), flags, NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL + sizeof(type), (flags), NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL /* * Mapped cache, array with known size. * Members cids, fids are not set.