Commit 85d2d3db authored by unknown's avatar unknown

Fix for the previous commit. I've added includes to the wrong file :(


server-tools/instance-manager/manager.cc:
  Unnecessary incudes removed
server-tools/instance-manager/mysqlmanager.cc:
  Added missing includes
parent 9b331a32
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
#include <my_global.h> #include <my_global.h>
#include <signal.h> #include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "thread_repository.h" #include "thread_repository.h"
#include "listener.h" #include "listener.h"
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
#include <string.h> #include <string.h>
#include <signal.h> #include <signal.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "manager.h" #include "manager.h"
#include "options.h" #include "options.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment