From f3472d9ab808512419643aba450d310543377bfc Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 20 Oct 2015 10:01:57 -0400 Subject: [PATCH] Cleanup: Missing space after cast operator MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- src/common/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utils.c b/src/common/utils.c index 2417a7d25..f1a717a8b 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -107,7 +107,7 @@ char *utils_partial_realpath(const char *path, char *resolved_path, size_t size) } /* Try to resolve this part */ - try_path = realpath((char *)cut_path, try_path_buf); + try_path = realpath((char *) cut_path, try_path_buf); if (try_path == NULL) { free(try_path_buf); /* -- 2.34.1