diff options
author | Jason Gerecke <killertofu@gmail.com> | 2011-12-22 13:41:43 -0800 |
---|---|---|
committer | Jason Gerecke <killertofu@gmail.com> | 2012-02-16 17:56:41 -0800 |
commit | 45fd72c9031ed88e4af26b43cbb51d1c64e88602 (patch) | |
tree | 9cd2566bd0b8be205a7b95186e32231127d6aa9c | |
parent | 6240c226ef429ade3926be0a65341117de2b24e5 (diff) | |
download | xf86-input-wacom-45fd72c9031ed88e4af26b43cbb51d1c64e88602.tar.gz |
Remove AC_CORE status print
Flag is deprecated, has no effect, and serves no purpose anymore.
Remove from the DBG statement.
Signed-off-by: Jason Gerecke <killertofu@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | src/wcmCommon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wcmCommon.c b/src/wcmCommon.c index 11340ea..034a3a3 100644 --- a/src/wcmCommon.c +++ b/src/wcmCommon.c @@ -294,10 +294,9 @@ static void sendAButton(InputInfoPtr pInfo, int button, int mask, mapped_button = priv->button[button]; DBG(4, priv, "TPCButton(%s) button=%d state=%d " - "mapped_button=%d, coreEvent=%s \n", + "mapped_button=%d\n", common->wcmTPCButton ? "on" : "off", - button, mask, mapped_button, - (mapped_button & AC_CORE) ? "yes" : "no"); + button, mask, mapped_button); if (!priv->keys[mapped_button][0]) { |