JaMe
Junior Member level 1
- Joined
- Nov 8, 2006
- Messages
- 19
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Location
- Indonesia
- Activity points
- 1,406
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 ?