From 9855a34f48acf6ae3aaeba9ec37756da41507e64 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 24 Aug 2014 21:06:09 +0200 Subject: Coding style: always add a space between a pointer's type and the * --- src/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shell.c') diff --git a/src/shell.c b/src/shell.c index 19dc6e5..e9e026d 100644 --- a/src/shell.c +++ b/src/shell.c @@ -143,7 +143,7 @@ static bool shell_command_do_exec(const fastd_shell_command_t *command, const fa sigemptyset(&set); pthread_sigmask(SIG_SETMASK, &set, NULL); - execl("/bin/sh", "sh", "-c", command->command, (char*)NULL); + execl("/bin/sh", "sh", "-c", command->command, (char *)NULL); _exit(127); } -- cgit v1.2.3