aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 07:36:31 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 07:36:31 +0000
commit8de05839c70454445cda28a924fb10a5153959cf (patch)
tree8d69be9d2981e269fbf7d0921c819210cec18029
parente2122e97d43eff66f4f97a8027869f7336eed382 (diff)
downloadbusybox-w32-8de05839c70454445cda28a924fb10a5153959cf.tar.gz
busybox-w32-8de05839c70454445cda28a924fb10a5153959cf.tar.bz2
busybox-w32-8de05839c70454445cda28a924fb10a5153959cf.zip
fix typo in comment
git-svn-id: svn://busybox.net/trunk/busybox@18398 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/busybox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 290ad17f2..8b3647f57 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -38,11 +38,11 @@ struct bb_applet {
38 __extension__ enum bb_suid_t need_suid:8; 38 __extension__ enum bb_suid_t need_suid:8;
39#endif 39#endif
40#if ENABLE_FEATURE_PREFER_APPLETS 40#if ENABLE_FEATURE_PREFER_APPLETS
41 /* true if instead if fork(); exec("applet"); waitpid(); 41 /* true if instead of fork(); exec("applet"); waitpid();
42 * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */ 42 * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */
43 unsigned char noexec; 43 unsigned char noexec;
44 /* Even nicer */ 44 /* Even nicer */
45 /* true if instead if fork(); exec("applet"); waitpid(); 45 /* true if instead of fork(); exec("applet"); waitpid();
46 * one can simply call applet_main(argc,argv); */ 46 * one can simply call applet_main(argc,argv); */
47 unsigned char nofork; 47 unsigned char nofork;
48#endif 48#endif