Cleanup: Missing space after cast operator
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 20 Oct 2015 14:01:57 +0000 (10:01 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 20 Oct 2015 14:01:57 +0000 (10:01 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/utils.c

index 2417a7d255ffb1445e12ec9e24ba2b5a29900e1d..f1a717a8b5092156679025f2ea9f0b461f737784 100644 (file)
@@ -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);
                        /*
This page took 0.025389 seconds and 4 git commands to generate.