Use 'const char *' instead of 'char *' for static strings and avoids a

lot of "discards qualifiers from pointer target type" warnings


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4870 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2010-11-06 18:07:04 +00:00
parent 96deb9d4d4
commit 2e9c72ec5e
1 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ static const char path_serial[] = "10001003";
/* Manufacturers */
char * itacns_mask_manufacturers[] = {
const char * itacns_mask_manufacturers[] = {
"Unknown",
"Kaitech",
"Gemplus",
@ -67,7 +67,7 @@ char * itacns_mask_manufacturers[] = {
"Athena"
};
char * iso7816_ic_manufacturers[] = {
const char * iso7816_ic_manufacturers[] = {
"Unknown",
"Motorola",
"STMicroelectronics",
@ -90,8 +90,8 @@ char * iso7816_ic_manufacturers[] = {
/* Data files */
static const struct {
char *label;
char *path;
const char *label;
const char *path;
int cie_only;
} itacns_data_files[] = {
{ "EF_DatiProcessore", "3F0010001002", 0 },