We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8046418 commit 68e648eCopy full SHA for 68e648e
src/daemon.cpp
@@ -1123,7 +1123,9 @@ clientCommand(int clientfd, const vector<string>& args)
1123
throw Exception("'grab' requires 1 parameter");
1124
grabCommand(clientfd, args[1].c_str());
1125
writeCommand(clientfd, args[1].c_str());
1126
- toClient(clientfd, "Warning: the command grab is deprecated, use grab-devices and write-events instead.\n");
+ toClient(clientfd,
1127
+ "Warning: the command grab is deprecated,"
1128
+ " use grab-devices and write-events instead.\n");
1129
}
1130
else if (args[0] == "use") {
1131
if (args.size() != 2)
0 commit comments