mirror of
https://github.com/X11Libre/xf86-input-synaptics.git
synced 2026-03-24 01:34:04 +00:00
Print millis as unsigned int
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
@@ -1846,7 +1846,7 @@ static void
|
||||
SetTapState(SynapticsPrivate *priv, enum TapState tap_state, CARD32 millis)
|
||||
{
|
||||
SynapticsParameters *para = &priv->synpara;
|
||||
DBG(7, "SetTapState - %d -> %d (millis:%d)\n", priv->tap_state, tap_state, millis);
|
||||
DBG(3, "SetTapState - %d -> %d (millis:%u)\n", priv->tap_state, tap_state, millis);
|
||||
switch (tap_state) {
|
||||
case TS_START:
|
||||
priv->tap_button_state = TBS_BUTTON_UP;
|
||||
@@ -1886,7 +1886,7 @@ SetTapState(SynapticsPrivate *priv, enum TapState tap_state, CARD32 millis)
|
||||
static void
|
||||
SetMovingState(SynapticsPrivate *priv, enum MovingState moving_state, CARD32 millis)
|
||||
{
|
||||
DBG(7, "SetMovingState - %d -> %d center at %d/%d (millis:%d)\n", priv->moving_state,
|
||||
DBG(7, "SetMovingState - %d -> %d center at %d/%d (millis:%u)\n", priv->moving_state,
|
||||
moving_state,priv->hwState->x, priv->hwState->y, millis);
|
||||
|
||||
if (moving_state == MS_TRACKSTICK) {
|
||||
|
||||
Reference in New Issue
Block a user