aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2015-11-12 22:56:32 -0500
committerPaul Selkirk <paul@psgd.org>2015-11-12 22:56:32 -0500
commit49ac8847de1120a4ae7b72747ee259bc0f5ffb3c (patch)
treea166cf13aafd1269a22d587c6b50efc3ba1f1114 /utils
parent29408da58bedf999e6b475649053e4348e88e3ba (diff)
fix printf warnings, fix time_check calculation
Diffstat (limited to 'utils')
-rw-r--r--utils/cores.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/cores.c b/utils/cores.c
index a499e9e..da823a7 100644
--- a/utils/cores.c
+++ b/utils/cores.c
@@ -74,7 +74,7 @@ int main(int argc, char *argv[])
}
if (name[0] != 0)
- printf("%08x: %8s %4s\n", cores[i], name, version);
+ printf("%08lx: %8s %4s\n", cores[i], name, version);
}
return 0;