> works correctly. Interestingly, if I do this:

> char    c = 'R';
> StrPrintF(display_string, "%s:%c:%s", "str1", c, "str2");

> it works fine.

Maybe the compiler is intepreting 'R' as something else, like a pointer to a
char?  Maybe you need to cast 'R':

StrPrintF(display_string, "%s:%c:%s", "str1", (Char) 'R', "str2");

Craig


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to