diff options
Diffstat (limited to 'src/mtx_qhull/entry.h')
-rw-r--r-- | src/mtx_qhull/entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_qhull/entry.h b/src/mtx_qhull/entry.h index d85da9a..f524d56 100644 --- a/src/mtx_qhull/entry.h +++ b/src/mtx_qhull/entry.h @@ -85,7 +85,7 @@ static void print_entry(const entry_t e) { switch(e.typ) { case INDEX: - printf("%d", e.val.i); + printf("%ul", (unsigned long)(e.val.i)); return; case POINTER: printf("0x%p", e.val.p); |