summaryrefslogtreecommitdiff
path: root/vchat.h
diff options
context:
space:
mode:
authorerdgeist <>2003-11-15 19:03:54 +0000
committererdgeist <>2003-11-15 19:03:54 +0000
commit3c75b863a628adc020062e773d7edf5bac0649fb (patch)
treeda4ea52fbb2b6cbedb6cbc3d6988bcb3c1187e15 /vchat.h
parentb64a6c9bc6241e77e214fa5e43975fb0fa20b336 (diff)
UTF-8 autodetection, some gcc warnings
Diffstat (limited to 'vchat.h')
-rwxr-xr-xvchat.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/vchat.h b/vchat.h
index 64788b9..ec5da02 100755
--- a/vchat.h
+++ b/vchat.h
@@ -59,7 +59,10 @@ struct configoption
59 unsigned char *varname; 59 unsigned char *varname;
60 unsigned char *defaultvalue; 60 unsigned char *defaultvalue;
61 unsigned char *value; 61 unsigned char *value;
62 unsigned char **localvar; 62 union {
63 unsigned char **pstr;
64 int *pint;
65 } localvar;
63}; 66};
64 67
65typedef struct configoption configoption; 68typedef struct configoption configoption;