* Fix to a stupid bug I introduced whilst trying to be clever

This commit is contained in:
Tim Angus 2006-01-15 15:30:52 +00:00
parent e74947be2c
commit b4898caac4
1 changed files with 3 additions and 2 deletions

View File

@ -40,9 +40,10 @@ int demo_protocols[] =
#define MIN_COMHUNKMEGS 56 #define MIN_COMHUNKMEGS 56
#define DEF_COMHUNKMEGS 64 #define DEF_COMHUNKMEGS 64
#define DEF_COMZONEMEGS 24 #define DEF_COMZONEMEGS 24
#define XSTRING(x) STRING(x)
#define STRING(x) #x #define STRING(x) #x
#define DEF_COMHUNKMEGS_S STRING(DEF_COMHUNKMEGS) #define DEF_COMHUNKMEGS_S XSTRING(DEF_COMHUNKMEGS)
#define DEF_COMZONEMEGS_S STRING(DEF_COMZONEMEGS) #define DEF_COMZONEMEGS_S XSTRING(DEF_COMZONEMEGS)
int com_argc; int com_argc;
char *com_argv[MAX_NUM_ARGVS+1]; char *com_argv[MAX_NUM_ARGVS+1];