diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-12 22:56:32 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-12 22:56:32 -0500 |
commit | 49ac8847de1120a4ae7b72747ee259bc0f5ffb3c (patch) | |
tree | a166cf13aafd1269a22d587c6b50efc3ba1f1114 /utils | |
parent | 29408da58bedf999e6b475649053e4348e88e3ba (diff) |
fix printf warnings, fix time_check calculation
Diffstat (limited to 'utils')
-rw-r--r-- | utils/cores.c | 2 |
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; |