diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2020-01-25 23:13:56 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-05-07 14:57:15 +0200 |
commit | f09d3f52167c748083391bb489e591e78e494149 (patch) | |
tree | f279c14c490f78bd36dcd37109dd3b2ce2f25431 /nx-X11/programs/Xserver/hw/nxagent | |
parent | 891f24c6521d8c84ab900810b85f41affba9a42e (diff) | |
download | nx-libs-f09d3f52167c748083391bb489e591e78e494149.tar.gz nx-libs-f09d3f52167c748083391bb489e591e78e494149.tar.bz2 nx-libs-f09d3f52167c748083391bb489e591e78e494149.zip |
Display.c: fix implicit declaration
Display.c: In function ‘nxagentResetDisplayHandlers’:
Display.c:901:5: warning: implicit declaration of function ‘nxagentReleaseAllSplits’; did you mean ‘nxagentWakeupBySplit’? [-Wimplicit-function-declaration]
nxagentReleaseAllSplits();
^~~~~~~~~~~~~~~~~~~~~~~
nxagentWakeupBySplit
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Display.c b/nx-X11/programs/Xserver/hw/nxagent/Display.c index bc85d821d..e3221fb4e 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Display.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Display.c @@ -86,6 +86,7 @@ is" without express or implied warranty. #include "Splash.h" #include "Screen.h" #include "Handlers.h" +#include "Split.h" #include <nx/NX.h> #include "compext/Compext.h" |