summaryrefslogtreecommitdiff
blob: fe63be714d8aab30411ca6d08ee1fc798b22bf96 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -743,7 +743,7 @@
 	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);
 		}