diff options
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r-- | src/Patchage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp index 1703d8b..fb269d5 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -720,7 +720,7 @@ Patchage::save_session(bool close) for (int c = 0; cmd[c].uuid; ++c) { std::string command = cmd[c].command; const size_t index = command.find(var); - if (index != string::npos) { + if (index != std::string::npos) { command.replace(index, var.length(), cmd[c].client_name); } |