diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-09-08 09:50:57 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-09-08 09:50:57 +0000 |
commit | e83786985c3cf004f41a54724ce335312913ba73 (patch) | |
tree | 42acf44e4889fb96a4815c7caf058eccbb714413 /src/mtx_qhull/entry.h | |
parent | f180cc819f0ae6312dde6270314f85723e90f280 (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.h | 2 |
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); |