Index: benchmark/readyQ/locality.cfa
===================================================================
--- benchmark/readyQ/locality.cfa	(revision 28220d27c3aef9ae669f1d9503c679131fa4e2de)
+++ benchmark/readyQ/locality.cfa	(revision 06573b2e4a2c1a957e2e7b8142b1553cb1134a19)
@@ -63,5 +63,5 @@
 }
 
-__attribute__((nolinline)) void access(MyData & this, size_t idx) {
+__attribute__((noinline)) void access(MyData & this, size_t idx) {
 	size_t l = this.len;
 	this.data[idx % l] += 1;
@@ -126,5 +126,5 @@
 // ==================================================
 // Do some work by accessing 'cnt' cells in the array
-__attribute__((nolinline)) void work(MyData & data, size_t cnt, uint64_t & state) {
+__attribute__((noinline)) void work(MyData & data, size_t cnt, uint64_t & state) {
 	for (cnt) {
 		access(data, __xorshift64(state));
@@ -261,9 +261,9 @@
 	}
 
-	printf("Duration (ms)          : %'ld\n", (end - start)`dms);
+	printf("Duration (ms)          : %'lf\n", (end - start)`dms);
 	printf("Number of processors   : %'d\n", nprocs);
 	printf("Number of threads      : %'d\n", nthreads);
 	printf("Total Operations(ops)  : %'15llu\n", global_count);
-	printf("Work size (64bit words): %'15llu\n", wsize);
+	printf("Work size (64bit words): %'15u\n", wsize);
 	printf("Total Operations(ops)  : %'15llu\n", global_count);
 	printf("Total G Migrations     : %'15llu\n", global_gmigs);
Index: benchmark/readyQ/locality.go
===================================================================
--- benchmark/readyQ/locality.go	(revision 28220d27c3aef9ae669f1d9503c679131fa4e2de)
+++ benchmark/readyQ/locality.go	(revision 06573b2e4a2c1a957e2e7b8142b1553cb1134a19)
@@ -282,5 +282,5 @@
 	// Print with nice 's, i.e. 1'000'000 instead of 1000000
 	p := message.NewPrinter(language.English)
-	p.Printf("Duration (ms)          : %f\n", delta.Seconds());
+	p.Printf("Duration (s)           : %f\n", delta.Seconds());
 	p.Printf("Number of processors   : %d\n", nprocs);
 	p.Printf("Number of threads      : %d\n", nthreads);
Index: benchmark/readyQ/rq_bench.hfa
===================================================================
--- benchmark/readyQ/rq_bench.hfa	(revision 28220d27c3aef9ae669f1d9503c679131fa4e2de)
+++ benchmark/readyQ/rq_bench.hfa	(revision 06573b2e4a2c1a957e2e7b8142b1553cb1134a19)
@@ -39,5 +39,5 @@
 		} else if(stop_count > 0) { \
 			clock_mode = false; \
-			printf("Running for %lu iterations\n", stop_count); \
+			printf("Running for %llu iterations\n", stop_count); \
 		} else { \
 			duration = 5; clock_mode = true;\
