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

« back to all changes in this revision

Viewing changes to src/state.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Julien Cristau, Chase Douglas, Cyril Brulebois
  • Date: 2012-05-20 13:56:03 UTC
  • mfrom: (0.2.5)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20120520135603-5vkihyjg63043kiu
[ 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:
48
48
    info = find_device_info(display, argv[0], True);
49
49
 
50
50
    if (!info) {
51
 
        fprintf(stderr, "unable to find device %s\n", argv[0]);
 
51
        fprintf(stderr, "unable to find device '%s'\n", argv[0]);
52
52
        return 1;
53
53
    }
54
54
 
55
55
    device = XOpenDevice(display, info->id);
56
56
 
57
57
    if (!device) {
58
 
        fprintf(stderr, "unable to open device %s\n", argv[0]);
 
58
        fprintf(stderr, "unable to open device '%s'\n", argv[0]);
59
59
        return 1;
60
60
    }
61
61