diff options
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1183,7 +1183,7 @@ static int Go_Str_eprom_47(gchar** response, int channel, char *loc_string,char if (store_string[i]=='~') { store_string[i]=' '; } - *(char *)(&globals.Flash.flash_start + eprom_loc+i)=store_string[i]; + *(char *)(&globals.Flash.flash_start + eprom_loc+i)=g_ascii_toupper(store_string[i]); } *(char *)(&globals.Flash.flash_start + eprom_loc + i)=(char) 0; /* end of string */ writeUserBlock(&globals.Flash, eprom_loc, strlen(store_string)+1); |