Skip to content
Snippets Groups Projects
Commit 427fd885 authored by Tom Lane's avatar Tom Lane
Browse files

Fix unportable format string.

Per compiler warning.
parent 71e58dcf
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#define LABEL_FORMAT " %-32s" #define LABEL_FORMAT " %-32s"
#define NA_FORMAT "%18s" #define NA_FORMAT "%18s"
#define OPS_FORMAT "%9.3f ops/sec (%6.f microsecs/op)" #define OPS_FORMAT "%9.3f ops/sec (%6.0f microsecs/op)"
#define USECS_SEC 1000000 #define USECS_SEC 1000000
/* These are macros to avoid timing the function call overhead. */ /* These are macros to avoid timing the function call overhead. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment