fx2lafw: Made string pointers constant

This commit is contained in:
Joel Holdsworth 2012-03-12 21:04:53 +00:00
parent 17b6c75a89
commit 6ccfadaf66
1 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@ struct fx2lafw_profile {
uint16_t vid;
uint16_t pid;
char *vendor;
char *model;
char *model_version;
const char *vendor;
const char *model;
const char *model_version;
int num_probes;
};