aboutsummaryrefslogtreecommitdiff
path: root/src/symcoord.c
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-17 00:16:39 +0100
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-17 00:16:39 +0100
commit0df4f6f98101bb3be192ce892aa1452f2c6de1a4 (patch)
tree8bd047e4e247812495b1fdb489e2e37c2cf14224 /src/symcoord.c
parent20ac0e60d7174114965d4419af0bb3028db8e447 (diff)
downloadnissy-0df4f6f98101bb3be192ce892aa1452f2c6de1a4.tar.gz
nissy-0df4f6f98101bb3be192ce892aa1452f2c6de1a4.zip
Use inttypes.h macros to print uint64_t variables (this requires -std=c99). Added a couple of TODOs
Diffstat (limited to 'src/symcoord.c')
-rw-r--r--src/symcoord.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/symcoord.c b/src/symcoord.c
index e9374d7..798a946 100644
--- a/src/symcoord.c
+++ b/src/symcoord.c
@@ -286,7 +286,7 @@ gensym(SymData *sd)
286 sd->rep = realloc(sd->rep, nreps * sizeof(Cube)); 286 sd->rep = realloc(sd->rep, nreps * sizeof(Cube));
287 sd->generated = true; 287 sd->generated = true;
288 288
289 fprintf(stderr, "Found %lu classes\n", nreps); 289 fprintf(stderr, "Found %" PRIu64 " classes\n", nreps);
290 290
291 if (!write_symdata_file(sd)) 291 if (!write_symdata_file(sd))
292 fprintf(stderr, "Error writing SymData file\n"); 292 fprintf(stderr, "Error writing SymData file\n");

Generated with cgit - Back to sebastiano.tronto.net