Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: src/log.h

Issue 114010: X64: Changed 0x%x formats in log.cc to 0x%p and omitted reinterpretting pointers. (Closed)
Patch Set: Forgot "%" before format constant.wq Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/globals.h ('K') | « src/globals.h ('k') | src/log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log.h
diff --git a/src/log.h b/src/log.h
index a7c6604a178d2106e52325f326ec623a402870d6..5f3c188c5327eb90a791ca0ccd396cb8e41081b3 100644
--- a/src/log.h
+++ b/src/log.h
@@ -261,12 +261,12 @@ class Logger {
// Class that extracts stack trace, used for profiling.
class StackTracer BASE_EMBEDDED {
public:
- explicit StackTracer(unsigned int low_stack_bound)
+ explicit StackTracer(uintptr_t low_stack_bound)
: low_stack_bound_(low_stack_bound) { }
void Trace(TickSample* sample);
private:
- unsigned int low_stack_bound_;
+ uintptr_t low_stack_bound_;
};
« src/globals.h ('K') | « src/globals.h ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698