mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
fix printf format for 64-bit build
This commit is contained in:
parent
cc6bf3f42b
commit
ea5fea4802
@ -5812,11 +5812,11 @@ class MyProcessor: public Processor {
|
|||||||
t->init();
|
t->init();
|
||||||
|
|
||||||
if (false) {
|
if (false) {
|
||||||
fprintf(stderr, "%d\n", difference(&(t->continuation), t));
|
fprintf(stderr, "%"LD"\n", difference(&(t->continuation), t));
|
||||||
fprintf(stderr, "%d\n", difference(&(t->exception), t));
|
fprintf(stderr, "%"LD"\n", difference(&(t->exception), t));
|
||||||
fprintf(stderr, "%d\n", difference(&(t->exceptionStackAdjustment), t));
|
fprintf(stderr, "%"LD"\n", difference(&(t->exceptionStackAdjustment), t));
|
||||||
fprintf(stderr, "%d\n", difference(&(t->exceptionOffset), t));
|
fprintf(stderr, "%"LD"\n", difference(&(t->exceptionOffset), t));
|
||||||
fprintf(stderr, "%d\n", difference(&(t->exceptionHandler), t));
|
fprintf(stderr, "%"LD"\n", difference(&(t->exceptionHandler), t));
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user