From 411617a981da97bef55835b0bd944742f3027be3 Mon Sep 17 00:00:00 2001 From: Eleni Maria Stea Date: Mon, 3 Feb 2014 20:46:31 +0200 Subject: fixed indent issue (bzr r3638.2.2) --- unity-shared/ConfigParser.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'unity-shared') diff --git a/unity-shared/ConfigParser.cpp b/unity-shared/ConfigParser.cpp index 737e3a0f6..5cc52f77a 100644 --- a/unity-shared/ConfigParser.cpp +++ b/unity-shared/ConfigParser.cpp @@ -272,16 +272,16 @@ int cfgstr_set_int (ConfigString *cfgstr, const char *key, int value) static char *strip_whitespace (char *buf) { - while (*buf && isspace(*buf)) - buf++; + while (*buf && isspace(*buf)) + buf++; - if (!*buf) - return 0; + if (!*buf) + return 0; - char *end = buf + strlen(buf) - 1; - while (end > buf && isspace(*end)) - end--; + char *end = buf + strlen(buf) - 1; + while (end > buf && isspace(*end)) + end--; - end[1] = 0; - return buf; + end[1] = 0; + return buf; } -- cgit v1.2.3