Commit 36bcd959 by Andre Nguyen Committed by GitHub

Fix pointer format specifier in documentation (#614)

parent 0f86336b
...@@ -89,7 +89,7 @@ void InitializeSymbolizer(const char* argv0); ...@@ -89,7 +89,7 @@ void InitializeSymbolizer(const char* argv0);
// if (absl::Symbolize(pc, tmp, sizeof(tmp))) { // if (absl::Symbolize(pc, tmp, sizeof(tmp))) {
// symbol = tmp; // symbol = tmp;
// } // }
// absl::PrintF("%*p %s\n", pc, symbol); // absl::PrintF("%p %s\n", pc, symbol);
// } // }
bool Symbolize(const void *pc, char *out, int out_size); bool Symbolize(const void *pc, char *out, int out_size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment