diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-09-08 09:46:08 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-09-08 09:46:08 +0000 |
commit | f180cc819f0ae6312dde6270314f85723e90f280 (patch) | |
tree | ff4999bb455d858f970e798973ae44fcf319005f /src/mtx_qhull/entry.h | |
parent | bc326b64aa62f4eed9cfc2ccd38acfd36b97b31c (diff) |
getting rid of compiler-warnings
svn path=/trunk/externals/iem/iemmatrix/; revision=17345
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); |