aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-25 11:33:17 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-25 11:33:17 +0200
commitde09acdf52d8c5128b518c36e7631d312b24e0f1 (patch)
tree8429a41177c35a5447b36ed3059e1095db2316a5
parent1b72dd26d056d0ab92652d315db490dcf0305cfe (diff)
Fix compiler warning on Darwin
-rw-r--r--make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.c b/make.c
index d5f7da4..229c210 100644
--- a/make.c
+++ b/make.c
@@ -20,7 +20,7 @@ enum {
};
static char *cflags_all[] = {
- "-I" GMPDIR,
+ ("-I" GMPDIR),
"-pipe",
"-std=c11",
"-Wall",