chiark
/
gitweb
/
~mdw
/
mLib
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
5379529
)
utils/t/exc-test.c: Fix `%p' format/argument type mismatch.
author
Mark Wooding
<mdw@distorted.org.uk>
Wed, 19 Jun 2013 02:23:11 +0000
(
03:23
+0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Fri, 28 Jun 2013 22:24:18 +0000
(23:24 +0100)
utils/t/exc-test.c
patch
|
blob
|
blame
|
history
diff --git
a/utils/t/exc-test.c
b/utils/t/exc-test.c
index f9a94635438ba152a72f4c0c0d2f2d6fb822b177..ba74b949ebec62ace0d85d72bc169d3faa4d0807 100644
(file)
--- a/
utils/t/exc-test.c
+++ b/
utils/t/exc-test.c
@@
-35,7
+35,7
@@
int main(void)
printf("%lu exception (val = %i)\n", exc_type, exc_i);
break;
} END_TRY;
- printf("hello! __exc_list = %p\n", __exc_list);
+ printf("hello! __exc_list = %p\n",
(void *)
__exc_list);
return (0);
}