~ubuntu-branches/ubuntu/saucy/joystick/saucy

« back to all changes in this revision

Viewing changes to utils/jstest.c

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2013-05-06 23:03:26 UTC
  • mfrom: (3.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20130506230326-po18icz4mtaa25k1
Tags: 1:1.4.6-1
* New upstream release:
  - Disable CRTSCTS on ELO touchscreens. Closes: #699030. Thanks Thierry
    Bultel!
  - Handle long device names correctly. Closes: #706744. Thanks Ralf
    Jung!
* Drop hardening.patch, merged upstream.
* Standards-Version 3.9.4, no change required.
* Switch to my Debian address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
        if (!strcmp("--select", argv[1])) {
260
260
 
261
261
                struct js_event js;
262
 
                struct timeval tv;
263
262
                fd_set set;
264
263
 
265
 
                tv.tv_sec = 1;
266
 
                tv.tv_usec = 0;
267
264
 
268
265
                while (1) {
269
266
 
 
267
                        struct timeval tv;
 
268
                        tv.tv_sec = 1;
 
269
                        tv.tv_usec = 0;
270
270
                        FD_ZERO(&set);
271
271
                        FD_SET(fd, &set);
272
272