aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsetu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zsetu.c')
-rw-r--r--src/zsetu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zsetu.c b/src/zsetu.c
index 2e60c28..f37be7e 100644
--- a/src/zsetu.c
+++ b/src/zsetu.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "internals"
+#include "internals.h"
#define SIZE_MULTIPLE(fit, in) ((sizeof(fit) + sizeof(in) - 1) / sizeof(in))
@@ -12,7 +12,7 @@ zsetu(z_t a, unsigned long long int b)
return;
}
if (a->alloced < SIZE_MULTIPLE(b, *(a->chars)))
- zahl_realloc(a, SIZE_MULTIPLE(b, *(a->chars)))
+ zahl_realloc(a, SIZE_MULTIPLE(b, *(a->chars)));
SET_SIGNUM(a, 1);
a->used = 0;
while (b) {