From: Peter Hutterer Date: Thu, 12 Sep 2013 03:39:40 +0000 (+1000) Subject: Fix a comment to reflect the new API X-Git-Tag: libevdev-0.4~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a263d7f71bfae2d02fcb27fc5b57a8c70e2200c8;p=platform%2Fupstream%2Flibevdev.git Fix a comment to reflect the new API Signed-off-by: Peter Hutterer --- diff --git a/libevdev/libevdev.h b/libevdev/libevdev.h index 5158586..704f85e 100644 --- a/libevdev/libevdev.h +++ b/libevdev/libevdev.h @@ -112,9 +112,9 @@ extern "C" { * } * printf("Input device name: \"%s\"\n", libevdev_get_name(dev)); * printf("Input device ID: bus %#x vendor %#x product %#x\n", - * libevdev_get_bustype(dev), - * libevdev_get_vendor_id(dev), - * libevdev_get_product_id(dev)); + * libevdev_get_id_bustype(dev), + * libevdev_get_id_vendor(dev), + * libevdev_get_id_product(dev)); * if (!libevdev_has_event_type(dev, EV_REL) || * !libevdev_has_event_code(dev, EV_KEY, BTN_LEFT)) { * printf("This device does not look like a mouse\n");