diff options
Diffstat (limited to 'libc/malloc_debug/DebugData.cpp')
-rw-r--r-- | libc/malloc_debug/DebugData.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/malloc_debug/DebugData.cpp b/libc/malloc_debug/DebugData.cpp index fdc28100f..339efdf1b 100644 --- a/libc/malloc_debug/DebugData.cpp +++ b/libc/malloc_debug/DebugData.cpp @@ -37,8 +37,8 @@ #include "malloc_debug.h" #include "TrackData.h" -bool DebugData::Initialize() { - if (!config_.SetFromProperties()) { +bool DebugData::Initialize(const char* options) { + if (!config_.Set(options)) { return false; } |