diff options
author | Thomas Graf <tgr@lsx.localdomain> | 2008-05-23 23:45:14 +0200 |
---|---|---|
committer | Thomas Graf <tgr@lsx.localdomain> | 2008-05-23 23:45:14 +0200 |
commit | d84430702496f617c01c5e2d27d0e82e02390bb7 (patch) | |
tree | df85d57f3a57c76fa375b57dacc8379e32efe0fe /lib/utils.c | |
parent | 10cf5a586c149fdb7e2639000dbfae5e6f8522a5 (diff) | |
download | android_external_libnl-d84430702496f617c01c5e2d27d0e82e02390bb7.tar.gz android_external_libnl-d84430702496f617c01c5e2d27d0e82e02390bb7.tar.bz2 android_external_libnl-d84430702496f617c01c5e2d27d0e82e02390bb7.zip |
Remove old line counting while dumping
Diffstat (limited to 'lib/utils.c')
-rw-r--r-- | lib/utils.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/utils.c b/lib/utils.c index 94260f4..3158bac 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -25,7 +25,7 @@ int nl_debug = 0; struct nl_dump_params nl_debug_dp = { - .dp_type = NL_DUMP_FULL, + .dp_type = NL_DUMP_DETAILS, }; static void __init nl_debug_init(void) @@ -870,8 +870,7 @@ void dump_from_ops(struct nl_object *obj, struct nl_dump_params *params) buf, sizeof(buf))); #endif params->dp_pre_dump = 1; - } else - nl_new_line(params); + } if (obj->ce_ops->oo_dump[type]) obj->ce_ops->oo_dump[type](obj, params); |