From d2d2f4789d28b7fe98251713e72311286f0e1e21 Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Mon, 26 Nov 2012 05:11:16 +0000 Subject: [PATCH] 'lib/helper.c' - clean-up - remove standalone tabs('\t') Commit removes standalone tabs - code clean-up. --- ipmitool/lib/helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipmitool/lib/helper.c b/ipmitool/lib/helper.c index bc9fa84..d3ec1bc 100644 --- a/ipmitool/lib/helper.c +++ b/ipmitool/lib/helper.c @@ -168,7 +168,7 @@ int str2long(const char * str, int64_t * lng_ptr) if (errno != 0) return (-3); - + return 0; } /* str2long(...) */ @@ -572,7 +572,7 @@ ipmi_start_daemon(struct ipmi_intf *intf) pid = (pid_t) fork(); if (pid < 0 || pid > 0) exit(0); - + #if defined(SIGTSTP) && defined(TIOCNOTTY) if (setpgid(0, getpid()) == -1) exit(1);