From 14b6bc2ce682f1d6558ed61b31e819513cc24a22 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Wed, 16 Apr 2014 07:10:06 +0200
Subject: [PATCH] Stylistic fixes.

---
 ChangeLog               | 4 ++++
 examples/eratosthenes.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3f1f3f5b..ee82c3ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2014-04-16  Niels Möller  <nisse@lysator.liu.se>
 
+	* examples/eratosthenes.c (vector_alloc): Use sizeof(*vector)
+	instead of explicit type in malloc call.
+	(vector_init): Make constant explicitly unsigned long.
+
 	* tools/input.c (sexp_get_quoted_char): Deleted useless for loop.
 
 2014-04-13  Niels Möller  <nisse@lysator.liu.se>
diff --git a/examples/eratosthenes.c b/examples/eratosthenes.c
index 3e1bd39f..7a54561d 100644
--- a/examples/eratosthenes.c
+++ b/examples/eratosthenes.c
@@ -93,7 +93,7 @@ static unsigned long *
 vector_alloc(unsigned long size)
 {
   unsigned long end = (size + BITS_PER_LONG - 1) / BITS_PER_LONG;
-  unsigned long *vector = malloc (end * sizeof(long));
+  unsigned long *vector = malloc (end * sizeof(*vector));
 
   if (!vector)
     {
@@ -110,7 +110,7 @@ vector_init(unsigned long *vector, unsigned long size)
   unsigned long i;
 
   for (i = 0; i < end; i++)
-    vector[i] = ~0;
+    vector[i] = ~0UL;
 }
 
 static void
-- 
GitLab