summaryrefslogtreecommitdiff
path: root/util/statetrace
diff options
context:
space:
mode:
Diffstat (limited to 'util/statetrace')
-rw-r--r--util/statetrace/arch/tracechild_amd64.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/statetrace/arch/tracechild_amd64.cc b/util/statetrace/arch/tracechild_amd64.cc
index 505745575..d408598e1 100644
--- a/util/statetrace/arch/tracechild_amd64.cc
+++ b/util/statetrace/arch/tracechild_amd64.cc
@@ -202,7 +202,7 @@ ostream & AMD64TraceChild::outputStartState(ostream & os)
auxVal = ptrace(PTRACE_PEEKDATA, pid, sp, 0);
sp += 8;
sprintf(obuf, "0x%016llx: Auxiliary vector = {0x%016llx, 0x%016llx}\n",
- sp - 8, auxType, auxVal);
+ sp - 16, auxType, auxVal);
os << obuf;
} while(auxType != 0 || auxVal != 0);
//Print out the argument strings, environment strings, and file name.