diff options
-rw-r--r-- | src/ws.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -43,7 +43,6 @@ #include "ws-properties.h" #endif - #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 #include <X11/Xatom.h> #include <xserver-properties.h> @@ -494,7 +493,7 @@ wsDeviceOn(DeviceIntPtr pWS) } if (priv->type == WSMOUSE_TYPE_TPANEL) { - /* save calibration values */ + /* get calibration values */ if (ioctl(pInfo->fd, WSMOUSEIO_GCALIBCOORDS, &coords) != 0) { xf86Msg(X_ERROR, "GCALIBCOORS failed %s\n", strerror(errno)); @@ -506,7 +505,7 @@ wsDeviceOn(DeviceIntPtr pWS) coords.samplelen = priv->raw; if (ioctl(pInfo->fd, WSMOUSEIO_SCALIBCOORDS, &coords) != 0) { - xf86Msg(X_ERROR, "GCALIBCOORS failed %s\n", + xf86Msg(X_ERROR, "SCALIBCOORS failed %s\n", strerror(errno)); return !Success; } |