Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-01-11 13:29:27 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-01-11 13:29:27 +0300
commita900b7767b52e0f929c7792860ace4b64d5d28cf (patch)
tree3b32a0f109e837b50eaa066e6cf284cf799a4c38
parent7780221683adca49e3e336c38be82134ee8422fd (diff)
Fix of previous commit
-rw-r--r--src/slic3r/GUI/InstanceCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/InstanceCheck.cpp b/src/slic3r/GUI/InstanceCheck.cpp
index 552b891c5..3513f278e 100644
--- a/src/slic3r/GUI/InstanceCheck.cpp
+++ b/src/slic3r/GUI/InstanceCheck.cpp
@@ -262,7 +262,7 @@ bool instance_check(int argc, char** argv, bool app_config_single_instance)
// see https://docs.appimage.org/packaging-guide/environment-variables.html#id2
const char *appimage_binary = std::getenv("APPIMAGE");
if (appimage_binary)
- hashed_path = std::hash<std::string>{}(boost::filesystem::canonical(boost::filesystem::system_complete(appimage_binary, ec).string());
+ hashed_path = std::hash<std::string>{}(boost::filesystem::canonical(boost::filesystem::system_complete(appimage_binary, ec).string()));
if (ec.value() > 0)
#endif // __linux
hashed_path = std::hash<std::string>{}(boost::filesystem::canonical(boost::filesystem::system_complete(argv[0]), ec).string());