Skip to content
Snippets Groups Projects
Commit a4de3938 authored by Kyle Ambroff's avatar Kyle Ambroff
Browse files

Fix annoying GCC 4.4 warning for implicite char * cast

parent 1e346e08
No related branches found
No related tags found
No related merge requests found
...@@ -193,8 +193,8 @@ LLFontGL* LLFontGL::getFontDefault() ...@@ -193,8 +193,8 @@ LLFontGL* LLFontGL::getFontDefault()
return NULL; return NULL;
} }
char* _PREHASH_AgentData = "AgentData"; char* _PREHASH_AgentData = (char *) "AgentData";
char* _PREHASH_AgentID = "AgentID"; char* _PREHASH_AgentID = (char *) "AgentID";
LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS); LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment