From 3c87cfcc162e5962504846e38cb96c357682ba0e Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Wed, 26 Oct 2022 10:44:39 -0700
Subject: [PROPOSED 2/2] * zic.c: No space before paren

---
 zic.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/zic.c b/zic.c
index 01dc658..e1567b1 100644
--- a/zic.c
+++ b/zic.c
@@ -753,7 +753,7 @@ make_links(void)
       dolink(links[i].l_target, links[i].l_linkname, false);
     else {
       /* The link target has not been made yet; copy the link to the end.  */
-      links = growalloc (links, sizeof *links, nalinks, &nlinks_alloc);
+      links = growalloc(links, sizeof *links, nalinks, &nlinks_alloc);
       links[nalinks++] = links[i];
     }
 
@@ -1173,7 +1173,7 @@ static uint_fast64_t
 get_rand_u64(void)
 {
 #if HAVE_GETRANDOM
-  static uint_fast64_t entropy_buffer[max(1, 256 / sizeof (uint_fast64_t))];
+  static uint_fast64_t entropy_buffer[max(1, 256 / sizeof(uint_fast64_t))];
   static int nwords;
   if (!nwords) {
     ssize_t s;
-- 
2.37.3

