diff options
Diffstat (limited to 'xorg-server/xfixes')
-rw-r--r-- | xorg-server/xfixes/Makefile.am | 32 | ||||
-rw-r--r-- | xorg-server/xfixes/cursor.c | 4 |
2 files changed, 18 insertions, 18 deletions
diff --git a/xorg-server/xfixes/Makefile.am b/xorg-server/xfixes/Makefile.am index a8425e8ea..7f4d4d285 100644 --- a/xorg-server/xfixes/Makefile.am +++ b/xorg-server/xfixes/Makefile.am @@ -1,16 +1,16 @@ -noinst_LTLIBRARIES = libxfixes.la - -AM_CFLAGS = $(DIX_CFLAGS) - -if XORG -sdk_HEADERS = xfixes.h -endif - -libxfixes_la_SOURCES = \ - cursor.c \ - region.c \ - saveset.c \ - select.c \ - xfixes.c \ - xfixes.h \ - xfixesint.h +noinst_LTLIBRARIES = libxfixes.la
+
+AM_CFLAGS = $(DIX_CFLAGS)
+
+if XORG
+sdk_HEADERS = xfixes.h
+endif
+
+libxfixes_la_SOURCES = \
+ cursor.c \
+ region.c \
+ saveset.c \
+ select.c \
+ xfixes.c \
+ xfixes.h \
+ xfixesint.h
diff --git a/xorg-server/xfixes/cursor.c b/xorg-server/xfixes/cursor.c index 602b9061e..467529a4f 100644 --- a/xorg-server/xfixes/cursor.c +++ b/xorg-server/xfixes/cursor.c @@ -190,7 +190,7 @@ CursorDisplayCursor(DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor) } static Bool -CursorCloseScreen(int index, ScreenPtr pScreen) +CursorCloseScreen(ScreenPtr pScreen) { CursorScreenPtr cs = GetCursorScreen(pScreen); Bool ret; @@ -202,7 +202,7 @@ CursorCloseScreen(int index, ScreenPtr pScreen) Unwrap(cs, pScreen, DisplayCursor, display_proc); Unwrap(cs, pScreen, ConstrainCursorHarder, constrain_proc); deleteCursorHideCountsForScreen(pScreen); - ret = (*pScreen->CloseScreen) (index, pScreen); + ret = (*pScreen->CloseScreen) (pScreen); free(cs); return ret; } |