Re: [Sdcc-user] warning pointer target lost const qualifier

2012-06-11 Thread roelof 't Hooft
On Mon, 2012-06-11 at 17:30 +0200, Philipp Klaus Krause wrote: > Am 10.06.2012 13:31, schrieb roelof 't Hooft: > > Hi all, > > > > I have no clue what this warning message means, I do > > know what it is about but no knowledge how to correct it : > > Change > > > void UART_PutString(uint8_t *str

Re: [Sdcc-user] warning pointer target lost const qualifier

2012-06-11 Thread Philipp Klaus Krause
Am 10.06.2012 13:31, schrieb roelof 't Hooft: > Hi all, > > I have no clue what this warning message means, I do > know what it is about but no knowledge how to correct it : Change > void UART_PutString(uint8_t *string) to void UART_PutString(const uint8_t *string) Philipp --

[Sdcc-user] warning pointer target lost const qualifier

2012-06-11 Thread roelof 't Hooft
Hi all, I have no clue what this warning message means, I do know what it is about but no knowledge how to correct it : nmea-c3.c:35: warning 196: pointer target lost const qualifier I have searched the archives and used Google to no avail. This is what I have, in different c and h files, that