From d8cb678bb65b2f5616122e68ee3d2d76fb88ddd2 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 29 Jul 2014 10:23:04 +0000 Subject: debug: Fix indentation in debug_parse_params Signed-off-by: Volker Lendecke Reviewed-by: Michael Adam --- lib/util/debug.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'lib/util/debug.c') diff --git a/lib/util/debug.c b/lib/util/debug.c index 77d485f62a..d1d4888cdc 100644 --- a/lib/util/debug.c +++ b/lib/util/debug.c @@ -365,16 +365,17 @@ static bool debug_parse_params(char **params) for (ndx = DBGC_ALL; ndx < debug_num_classes; ndx++) { DEBUGLEVEL_CLASS[ndx] = DEBUGLEVEL_CLASS[DBGC_ALL]; } - + /* Fill in new debug class levels */ for (; i < debug_num_classes && params[i]; i++) { char *saveptr; if ((class_name = strtok_r(params[i],":", &saveptr)) && - (class_level = strtok_r(NULL, "\0", &saveptr)) && - ((ndx = debug_lookup_classname(class_name)) != -1)) { - DEBUGLEVEL_CLASS[ndx] = atoi(class_level); + (class_level = strtok_r(NULL, "\0", &saveptr)) && + ((ndx = debug_lookup_classname(class_name)) != -1)) { + DEBUGLEVEL_CLASS[ndx] = atoi(class_level); } else { - DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params[i])); + DEBUG(0,("debug_parse_params: unrecognized debug " + "class name or format [%s]\n", params[i])); return false; } } -- cgit