aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_qhull/entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mtx_qhull/entry.h')
-rw-r--r--src/mtx_qhull/entry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_qhull/entry.h b/src/mtx_qhull/entry.h
index f524d56..956bab1 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("%ul", (unsigned long)(e.val.i));
+ printf("%lu", (unsigned long)(e.val.i));
return;
case POINTER:
printf("0x%p", e.val.p);