From 20342ff42d062a6d657e116ede60ab457fd42bef Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Fri, 16 Feb 2018 15:24:24 +0100 Subject: [PATCH] sandbox: missing include --- cmdline.cc | 3 +-- sandbox.cc | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdline.cc b/cmdline.cc index 1c5be69..8ca6464 100644 --- a/cmdline.cc +++ b/cmdline.cc @@ -424,8 +424,7 @@ std::unique_ptr parseArgs(int argc, char* argv[]) { nsjconf->logfile = optarg; break; case 'L': - nsjconf->logfile = - "/dev/fd/" + std::to_string(strtol(optarg, NULL, 10)); + nsjconf->logfile = "/dev/fd/" + std::to_string(strtol(optarg, NULL, 10)); break; case 'd': nsjconf->daemonize = true; diff --git a/sandbox.cc b/sandbox.cc index 4a08342..23cd43a 100644 --- a/sandbox.cc +++ b/sandbox.cc @@ -24,6 +24,7 @@ #include #include #include +#include #include extern "C" {