~chasedouglas/ubuntu/maverick/xorg-server/multitouch

« back to all changes in this revision

Viewing changes to hw/xfree86/common/xf86Xinput.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau, Julien Cristau, Christopher James Halse Rogers
  • Date: 2010-06-07 23:22:48 UTC
  • mfrom: (0.9.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: james.westby@ubuntu.com-20100607232248-x9ob0sjy8bwkc2ki
Tags: 2:1.8.1.901-1
[ Julien Cristau ]
* New upstream release
* Merge changes from 2:1.7.7-2.

[ Christopher James Halse Rogers ]
* 16-xaa-fbcomposite-fix-negative-size.diff:
  - mi hunk merged upstream.  Update to keep just the fbpict.c hunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
551
551
            return FALSE;
552
552
 
553
553
        for (cur = iclass->match_tag, match = FALSE; *cur && !match; cur++) {
554
 
            const char *tag;
555
 
            for(tag = *attrs->tags; *tag; tag++) {
556
 
                if (!strcmp(tag, *cur)) {
 
554
            char * const *tag;
 
555
            for(tag = attrs->tags; *tag; tag++) {
 
556
                if (!strcmp(*tag, *cur)) {
557
557
                    match = TRUE;
558
558
                    break;
559
559
                }