JaMe
Junior Member level 1
when I compiled this code,
const char* name= dir_entry->long_name;
char * name_ext;
name_ext = strrchr(name, '.');
compiler shows warning warning message:
[Warning(ccom)] assign far pointer to near pointer,bank value ignored
===> name_ext = strrchr(name, '.');
I am using High-performance Embedded Workshop by Renesas Technology.
The microcontroller is M16C28, which is 16-bit processor. Any idea about this ?
const char* name= dir_entry->long_name;
char * name_ext;
name_ext = strrchr(name, '.');
compiler shows warning warning message:
[Warning(ccom)] assign far pointer to near pointer,bank value ignored
===> name_ext = strrchr(name, '.');
I am using High-performance Embedded Workshop by Renesas Technology.
The microcontroller is M16C28, which is 16-bit processor. Any idea about this ?