From 83270e13f8d4bb3a9ce334d78f0575872ebd3e8b Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Tue, 19 Feb 2019 05:03:01 -0500 Subject: [PATCH] Woops, where'd that semicolon go when we most needed it? --- indra/llwindow/llwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llwindow/llwindow.cpp b/indra/llwindow/llwindow.cpp index 1acd62169..ef0b75b6e 100644 --- a/indra/llwindow/llwindow.cpp +++ b/indra/llwindow/llwindow.cpp @@ -260,7 +260,7 @@ int LLWindow::ShellEx(const std::string& command) #elif LL_DARWIN "open \""; #else // LL_LINUX or other modern unix, pray it has xdg-open - "xdg-open \"" + "xdg-open \""; #endif return std::system((open + command + '"').c_str()); }