Merge branch 'master' of github.com:FacialTurd/PowderToypp
This commit is contained in:
commit
54741c79ef
@ -659,9 +659,9 @@ void OpenURI(std::string uri) {
|
|||||||
strappend(cmd, uri.c_str());
|
strappend(cmd, uri.c_str());
|
||||||
system(cmd);
|
system(cmd);
|
||||||
#elif LIN32
|
#elif LIN32
|
||||||
char *cmd = malloc(11+uri.length());
|
char *cmd = (char*)malloc(11+uri.length());
|
||||||
strcpy(cmd, "xdg-open ");
|
strcpy(cmd, "xdg-open ");
|
||||||
strappend(cmd, uri.c_str());
|
strappend(cmd, (char*)uri.c_str());
|
||||||
system(cmd);
|
system(cmd);
|
||||||
#elif LIN64
|
#elif LIN64
|
||||||
char *cmd = malloc(11+uri.length());
|
char *cmd = malloc(11+uri.length());
|
||||||
|
Loading…
Reference in New Issue
Block a user