Browse Source

fix typo in a comment in __libc_start_main

Rich Felker 10 years ago
parent
commit
285f969db6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/env/__libc_start_main.c

+ 1 - 1
src/env/__libc_start_main.c

@@ -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;
 }