summaryrefslogtreecommitdiff
path: root/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'math.c')
-rw-r--r--math.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/math.c b/math.c
index d6fc798..3c99e51 100644
--- a/math.c
+++ b/math.c
@@ -31,7 +31,7 @@ int main(int argc, char * argv[]) {
int i;
int iterations;
- uint64_t start, end;
+ uint32_t start, end;
start = __rpcc();
@@ -49,8 +49,7 @@ int main(int argc, char * argv[]) {
}
}
-/* printf("%5s\t%5s\t%lu\n", LIB_NAME, FUNCTION_NAME, (end - start) / 30);*/
- printf("%lu,", (end - start) / iterations);
+ printf("%u,", (end - start) / iterations);
return 0;
}