summaryrefslogtreecommitdiffstats
path: root/init/ueventd_parser.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-02-04 14:46:36 -0800
committerElliott Hughes <enh@google.com>2015-02-04 17:16:11 -0800
commitc0e919c92062360a69b771722677d041c9998403 (patch)
tree8d082ff796a482fd305a00640a5c83dd0a258d12 /init/ueventd_parser.cpp
parent27d28d3baff860d1fd936a5fcf2d920577c52575 (diff)
downloadsystem_core-c0e919c92062360a69b771722677d041c9998403.zip
system_core-c0e919c92062360a69b771722677d041c9998403.tar.gz
system_core-c0e919c92062360a69b771722677d041c9998403.tar.bz2
Stop using #if for conditional compilation.
Use regular 'if' to prevent bitrot. Also remove remaining typedefs. Change-Id: I2e6ca928e2db29b88b643cf990ff05cfb0be94a6
Diffstat (limited to 'init/ueventd_parser.cpp')
-rw-r--r--init/ueventd_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/ueventd_parser.cpp b/init/ueventd_parser.cpp
index f54a90b..2ae251f 100644
--- a/init/ueventd_parser.cpp
+++ b/init/ueventd_parser.cpp
@@ -235,7 +235,7 @@ int ueventd_parse_config_file(const char *fn)
if (!data) return -1;
parse_config(fn, data);
- DUMP();
+ dump_parser_state();
return 0;
}