bb_applet_name -> applet_name

This commit is contained in:
Denis Vlasenko
2006-10-03 21:00:43 +00:00
parent 67b23e6043
commit 8f8f268cfd
45 changed files with 71 additions and 69 deletions

View File

@@ -5,7 +5,7 @@
* 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>
@@ -14,7 +14,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);
}