From c9e817ff478b94b5bae4b853f913cc32d9c94a19 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 9 Oct 2011 13:14:53 +0000 Subject: Fixed port state table corruption in the TCP layer of the RNDIS Ethernet device demos. Fix additional warnings under GCC 4.6. --- Demos/Host/LowLevel/StillImageHost/StillImageHost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Demos/Host/LowLevel/StillImageHost') diff --git a/Demos/Host/LowLevel/StillImageHost/StillImageHost.c b/Demos/Host/LowLevel/StillImageHost/StillImageHost.c index d2eecb403..51f62016d 100644 --- a/Demos/Host/LowLevel/StillImageHost/StillImageHost.c +++ b/Demos/Host/LowLevel/StillImageHost/StillImageHost.c @@ -353,7 +353,7 @@ void UnicodeToASCII(uint8_t* UnicodeString, void ShowCommandError(uint8_t ErrorCode, bool ResponseCodeError) { - char* FailureType = ((ResponseCodeError) ? PSTR("Response Code != OK") : PSTR("Transaction Fail")); + const char* FailureType = ((ResponseCodeError) ? PSTR("Response Code != OK") : PSTR("Transaction Fail")); printf_P(PSTR(ESC_FG_RED "Command Error (%S).\r\n" " -- Error Code %d\r\n" ESC_FG_WHITE), FailureType, ErrorCode); -- cgit v1.2.3