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:
parent
501dc3c699
commit
8ea01b6976
1 changed files with 2 additions and 2 deletions
|
@ -24,10 +24,10 @@
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int id;
|
int id;
|
||||||
char *name;
|
const char *name;
|
||||||
int num_parms; // minimum number of parameters
|
int num_parms; // minimum number of parameters
|
||||||
int opt_parms; // optional parmaters, usually 0, can be -1 for unlimited.
|
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
|
int placement; // where the token can be placed
|
||||||
} tokenType;
|
} tokenType;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue