summaryrefslogtreecommitdiffstats
path: root/src/Server/Requests/CommandRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Server/Requests/CommandRequest.h')
-rw-r--r--src/Server/Requests/CommandRequest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server/Requests/CommandRequest.h b/src/Server/Requests/CommandRequest.h
index 8221b14..3b2dcdd 100644
--- a/src/Server/Requests/CommandRequest.h
+++ b/src/Server/Requests/CommandRequest.h
@@ -34,7 +34,7 @@ class CommandRequest : public Common::Request {
virtual void sendRequest();
public:
- CommandRequest(bool reboot0) : reboot(reboot0) {}
+ CommandRequest(Common::Application *application, bool reboot0) : Common::Request(application), reboot(reboot0) {}
};
}