commit a248183ed901151ba317002d267f99ce7e519a78
parent d8f06aadb4b61b93f20303e5288c8859f6c2c75a
Author: MTRNord <mtrnord1@gmail.com>
Date: Fri, 22 Sep 2017 20:11:46 +0200
add missing convertion
Signed-off-by: MTRNord <mtrnord1@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.cpp b/main.cpp
@@ -33,7 +33,7 @@ int main(int argc, char* argv[]) {
/* We might have elevated privileges beyond that of the user who invoked
* the program, due to suid bit. Be very careful about trusting any data! */
- char * nspaceL = reader.Get("broker", "namespace", "l2tp");
+ char * nspaceL = (char *) reader.Get("broker", "namespace", "l2tp");
broker::TunnelManager tunnelManager(nspaceL);
tunnelManager.initialize();