Merge "Fix output of pointers for 64bit devices." into lmp-mr1-dev

This commit is contained in:
Michael Lentine 2014-10-31 18:39:22 +00:00 committed by Android (Google) Code Review
commit 9853685931

View File

@ -116,8 +116,8 @@ TextOutput& operator<<(TextOutput& to, double val)
TextOutput& operator<<(TextOutput& to, const void* val) TextOutput& operator<<(TextOutput& to, const void* val)
{ {
char buf[16]; char buf[32];
sprintf(buf, "%p", val); snprintf(buf, sizeof(buf), "%p", val);
to.print(buf, strlen(buf)); to.print(buf, strlen(buf));
return to; return to;
} }