increase syslog message limit from 256 to 1024
[musl] / src / env / __libc_start_main.c
index c10a3f3..10e5590 100644 (file)
@@ -72,7 +72,7 @@ int __libc_start_main(int (*main)(int,char **,char **), int argc, char **argv)
                (*(void (**)())a)();
 #endif
 
-       /* Pass control to to application */
+       /* Pass control to the application */
        exit(main(argc, argv, envp));
        return 0;
 }