hdparm: whitespace style fixes
[oweals/busybox.git] / applets / individual.c
index 0af256c6c5e57c6c53d260613cb61bfd5bccfc7d..1667f188b73d4b70a12ab0f5f86f23886c1e6f59 100644 (file)
@@ -1,11 +1,11 @@
 /* Minimal wrapper to build an individual busybox applet.
  *
  * Copyright 2005 Rob Landley <rob@landley.net
- * 
- * Licensed under GPLv2 or later, see file License in this tarball for details
+ *
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details
  */
 
-const char *bb_applet_name;
+const char *applet_name;
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -13,7 +13,7 @@ const char *bb_applet_name;
 
 int main(int argc, char *argv[])
 {
-       bb_applet_name=argv[0];
+       applet_name = argv[0];
 
        return APPLET_main(argc,argv);
 }