From 9224ac4f09a51502f8cbb4fb68758fb354fbf1eb Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Tue, 16 Apr 2019 15:54:50 -0400 Subject: [PATCH] Update cstr_helper.c Fixing indentation --- src/util/cstr_helper.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/cstr_helper.c b/src/util/cstr_helper.c index d8706d3..34d4279 100644 --- a/src/util/cstr_helper.c +++ b/src/util/cstr_helper.c @@ -51,8 +51,8 @@ bool cstr_validate_id(const char *element_id) bool cstr_isnullterm(const char *source) // Determines if the string passed is null terminated or not { - if (strchr(source, '\0')) - return true; - else - return false; + if (strchr(source, '\0')) + return true; + else + return false; }