Peter,

I think you should try to use double quotes:

Writef("The quick brown fox jumps over the lazy dog.\0");

Maarten

> I'm trying to compile the following function for the PIC14 port:
> 
> void Writef( char *string) {
>               
>       while(*string != 0) {
>               putchar(*string);
>               string++;
>       }       
> }
> 
> Note, no printf in the PIC14 port.
> 
> I call it as:
> 
> Writef('The quick brown fox jumps over the lazy dog.\0');
> 
> I get the following error from sdcc when trying to compile:
> 
> 
> serial-soft.c:117: error 88: illegal cast of LITERAL value to 'generic' 
> pointer
> from type 'literal-unsigned-char'
> to type 'char generic* '
> 
> Now I've not programmed in C for quite a while, and pointers were never my 
> strong point.  Can any kind sole give me a hint?
> 
> Thanks,
> 
> Pete


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to