]> git.sur5r.net Git - i3/i3/blobdiff - i3-nagbar/main.c
Fix redundant casts to the same type
[i3/i3] / i3-nagbar / main.c
index e4628e303452feae75294e0de9208cc26ba5bc8e..3e5f43e367ef6018b460daa337ef220c7b965ee8 100644 (file)
@@ -115,7 +115,7 @@ static void start_application(const char *command) {
         setsid();
         if (fork() == 0) {
             /* This is the child */
-            execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, (void *)NULL);
+            execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, NULL);
             /* not reached */
         }
         exit(0);