aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_qhull/entry.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2014-09-08 09:50:57 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2014-09-08 09:50:57 +0000
commite83786985c3cf004f41a54724ce335312913ba73 (patch)
tree42acf44e4889fb96a4815c7caf058eccbb714413 /src/mtx_qhull/entry.h
parentf180cc819f0ae6312dde6270314f85723e90f280 (diff)
oops, it's %lu rather than %ul
svn path=/trunk/externals/iem/iemmatrix/; revision=17346
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);