diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-30 13:43:39 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-30 13:43:39 +1000 |
commit | 461d74ba17339ea228e8d8b40efd996e3e4757a4 (patch) | |
tree | 48afaad31033eee2ae317c4700db71a6d11bad57 | |
parent | 1bdc3c58e7ad8da51f0aed6711a096bac48b168b (diff) |
Swap calls to Error() to ErrorF
Error doesn't exist anymore, removed in xorg-server-1.11.0-182-g09dbfcb
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | src/xf86Elo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xf86Elo.c b/src/xf86Elo.c index 2b09bdc..7f8865c 100644 --- a/src/xf86Elo.c +++ b/src/xf86Elo.c @@ -248,7 +248,7 @@ xf86EloGetPacket(unsigned char *buffer, * Okay, give up. */ if (num_bytes < 0) { - Error("System error while reading from Elographics touchscreen."); + ErrorF("System error while reading from Elographics touchscreen."); return !Success; } DBG(4, ErrorF("Read %d bytes\n", num_bytes)); @@ -758,7 +758,7 @@ xf86EloControl(DeviceIntPtr dev, DBG(2, ErrorF("Elographics touchscreen opening : %s\n", priv->input_dev)); pInfo->fd = xf86OpenSerial(pInfo->options); if (pInfo->fd < 0) { - Error("Unable to open Elographics touchscreen device"); + ErrorF("Unable to open Elographics touchscreen device"); return !Success; } |