Update of /cvsroot/blob/blob/src/blob
In directory usw-pr-cvs1:/tmp/cvs-serv5027/src/blob
Modified Files:
debug.c
Log Message:
stop people from looking over my shoulder and asking why my app is swearing
Index: debug.c
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/debug.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- debug.c 2002/01/06 15:44:23 1.9
+++ debug.c 2002/01/27 10:03:54 1.10
@@ -378,7 +378,7 @@
__commandlist(dump, "dump", dumphelp );
/*********************************************************************
- * BitChange
+ * ChangeBit
*
* AUTOR: SELETZ
* REVISED:
@@ -386,7 +386,7 @@
* Modifies bits of an given memory location
*
*/
-static int BitChange( int argc, char *argv[] )
+static int ChangeBit( int argc, char *argv[] )
{
int ret = 0;
u32 adr = 0L;
@@ -437,8 +437,8 @@
return ret;
}
-static char bitchghelp[] = "bitchg address value {and|or|xor|set|clear}\n";
-__commandlist(BitChange, "bitchg", bitchghelp );
+static char chgbithelp[] = "chgbit address value {and|or|xor|set|clear}\n";
+__commandlist(ChangeBit, "chgbit", chgbithelp );
/*********************************************************************
* Call
|