dix: move #if statement to stop compiler warning
ptrveloc.c: In function 'QueryTrackers': ptrveloc.c:598:34: warning: variable 'used_offset' set but not used [-Wunused-but-set-variable] used_offset is used, but only in the debugging code. Move the #if statement to ignore that warning. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
This commit is contained in:
parent
f9067c1dd8
commit
1ecc427a39
|
@ -649,13 +649,13 @@ QueryTrackers(DeviceVelocityPtr vel, int cur_t){
|
|||
DebugAccelF("(dix prtacc) query: last tracker in effect\n");
|
||||
used_offset = vel->num_tracker-1;
|
||||
}
|
||||
#ifdef PTRACCEL_DEBUGGING
|
||||
if(used_offset >= 0){
|
||||
#ifdef PTRACCEL_DEBUGGING
|
||||
MotionTracker *tracker = TRACKER(vel, used_offset);
|
||||
DebugAccelF("(dix prtacc) result: offset %i [dx: %i dy: %i diff: %i]\n",
|
||||
used_offset, tracker->dx, tracker->dy, cur_t - tracker->time);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue