less warnings from gcc

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5956 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2009-03-28 09:52:10 +00:00
parent 501dc3c699
commit 8ea01b6976

View file

@ -24,10 +24,10 @@
typedef struct
{
int id;
char *name;
const char *name;
int num_parms; // minimum number of parameters
int opt_parms; // optional parmaters, usually 0, can be -1 for unlimited.
char *usage_str;
const char *usage_str;
int placement; // where the token can be placed
} tokenType;