summaryrefslogtreecommitdiff
path: root/src/cmd/cov/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/cov/main.c')
-rw-r--r--src/cmd/cov/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/cov/main.c b/src/cmd/cov/main.c
index 1b3138a7f..5ff22c00a 100644
--- a/src/cmd/cov/main.c
+++ b/src/cmd/cov/main.c
@@ -81,7 +81,7 @@ ran(uvlong pc, uvlong epc)
key.epc = pc+1;
r = treeget(&breakpoints, &key);
if(r == nil)
- sysfatal("unchecked breakpoint at %#lux+%d", pc, (int)(epc-pc));
+ sysfatal("unchecked breakpoint at %#llux+%d", pc, (int)(epc-pc));
// Might be that the tail of the sequence
// was run already, so r->epc is before the end.