summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libkse/test/guard_b.c8
-rw-r--r--lib/libpthread/test/guard_b.c8
2 files changed, 10 insertions, 6 deletions
diff --git a/lib/libkse/test/guard_b.c b/lib/libkse/test/guard_b.c
index 42bf4ed..2e27031 100644
--- a/lib/libkse/test/guard_b.c
+++ b/lib/libkse/test/guard_b.c
@@ -34,6 +34,7 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <errno.h>
#include <limits.h>
#include <pthread.h>
@@ -69,9 +70,10 @@ recurse(void *args)
* hand tweaking, so just print a warning rather than aborting.
*/
if (parms->top - (void *)&top != FRAME_SIZE * parms->cur) {
- fprintf(stderr, "Stack size (%d) != expected (%d), frame %d\n",
- parms->top - (void *)&top, FRAME_SIZE * parms->cur,
- parms->cur);
+ fprintf(stderr,
+ "Stack size (%ld) != expected (%ld), frame %ld\n",
+ (long)parms->top - (long)&top,
+ (long)(FRAME_SIZE * parms->cur), (long)parms->cur);
}
parms->cur++;
diff --git a/lib/libpthread/test/guard_b.c b/lib/libpthread/test/guard_b.c
index 42bf4ed..2e27031 100644
--- a/lib/libpthread/test/guard_b.c
+++ b/lib/libpthread/test/guard_b.c
@@ -34,6 +34,7 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <errno.h>
#include <limits.h>
#include <pthread.h>
@@ -69,9 +70,10 @@ recurse(void *args)
* hand tweaking, so just print a warning rather than aborting.
*/
if (parms->top - (void *)&top != FRAME_SIZE * parms->cur) {
- fprintf(stderr, "Stack size (%d) != expected (%d), frame %d\n",
- parms->top - (void *)&top, FRAME_SIZE * parms->cur,
- parms->cur);
+ fprintf(stderr,
+ "Stack size (%ld) != expected (%ld), frame %ld\n",
+ (long)parms->top - (long)&top,
+ (long)(FRAME_SIZE * parms->cur), (long)parms->cur);
}
parms->cur++;
OpenPOWER on IntegriCloud