> 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/
- StrPrintF bug? Fredrik Jagenheim
- Re: StrPrintF bug? Adam Wozniak
- RE: StrPrintF bug? Fitzpatrick, Joe
- Re: StrPrintF bug? Steve Sabram
- StrPrintF Bug? Thomas Ward
- Re: StrPrintF Bug? Craig Thrall
- Re: StrPrintF Bug? Richard Burmeister
- Re: StrPrintF Bug? Thomas Ward
- RE: StrPrintF Bug? Fitzpatrick, Joe
- Re: StrPrintF Bug? Roger Chaplin
- Re: StrPrintF Bug? Richard Burmeister
- RE: StrPrintF Bug? Fitzpatrick, Joe
- Re: StrPrintF Bug? John Marshall
- Re: StrPrintF Bug? Gee Ng
- Re: StrPrintF Bug? palm
- Re: StrPrintF Bug? Adam Wozniak
