~ubuntu-branches/ubuntu/trusty/xinput/trusty

« back to all changes in this revision

Viewing changes to src/test.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Julien Cristau, Chase Douglas, Cyril Brulebois
  • Date: 2012-05-20 13:56:03 UTC
  • mfrom: (1.1.9) (4.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120520135603-kz0mjqk7s0p84mz0
Tags: 1.6.0-1
[ Julien Cristau ]
* Change Maintainer to the X Strike Force.
* Add Vcs-* control fields.

[ Chase Douglas ]
* Bump Standards-Version to 3.9.2
* Add build deps on libxrandr-dev and libxinerama-dev
* Bump build deps on libxi and x11proto-input-dev

[ Cyril Brulebois ]
* New upstream release.
* Replace Julien with myself in Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    device = XOpenDevice(dpy, info->id);
55
55
 
56
56
    if (!device) {
57
 
        fprintf(stderr, "unable to open device %s\n", dev_name);
 
57
        fprintf(stderr, "unable to open device '%s'\n", dev_name);
58
58
        return 0;
59
59
    }
60
60
 
181
181
        info = find_device_info(display, argv[idx], True);
182
182
 
183
183
        if (!info) {
184
 
            fprintf(stderr, "unable to find device %s\n", argv[idx]);
 
184
            fprintf(stderr, "unable to find device '%s'\n", argv[idx]);
185
185
            return EXIT_FAILURE;
186
186
        } else {
187
187
            if (register_events(display, info, argv[idx], handle_proximity)) {