Fix pointer errors for linux.

This commit is contained in:
savask 2012-02-05 20:27:16 +08:00 committed by Simon Robertshaw
parent 8024caec55
commit 54c8dbb250

View File

@ -659,9 +659,9 @@ void OpenURI(std::string uri) {
strappend(cmd, uri.c_str());
system(cmd);
#elif LIN32
char *cmd = malloc(11+uri.length());
char *cmd = (char*)malloc(11+uri.length());
strcpy(cmd, "xdg-open ");
strappend(cmd, uri.c_str());
strappend(cmd, (char*)uri.c_str());
system(cmd);
#elif LIN64
char *cmd = malloc(11+uri.length());