diff options
| author | Chase Douglas <chase.douglas@canonical.com> | 2012-04-06 10:21:14 -0700 |
|---|---|---|
| committer | Chase Douglas <chase.douglas@ubuntu.com> | 2012-04-16 11:29:20 -0700 |
| commit | 69b13b8548f10c72339aa648631baf0503ca8cda (patch) | |
| tree | 762479cd064a6a725a9518223f679c7a2b6df26d | |
| parent | dfa3466767c40cb98945d34cbd2576a852ca42a5 (diff) | |
Log messages in GetTouchEvents() in a signal safe manner
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
| -rw-r--r-- | dix/getevents.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dix/getevents.c b/dix/getevents.c index 23bbe065c..773b21d2b 100644 --- a/dix/getevents.c +++ b/dix/getevents.c @@ -1822,8 +1822,8 @@ GetTouchEvents(InternalEvent *events, DeviceIntPtr dev, uint32_t ddx_touchid, touchpoint.ti = TouchFindByDDXID(dev, ddx_touchid, (type == XI_TouchBegin)); if (!touchpoint.ti) { - ErrorF("[dix] %s: unable to %s touch point %x\n", dev->name, - type == XI_TouchBegin ? "begin" : "find", ddx_touchid); + ErrorSigSafe("[dix] %s: unable to %s touch point %u\n", dev->name, + type == XI_TouchBegin ? "begin" : "find", ddx_touchid); return 0; } client_id = touchpoint.ti->client_id; |
