~darkxst/ubuntu/raring/xorg-server/lp1073724

« back to all changes in this revision

Viewing changes to hw/xfree86/parser/Vendor.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois
  • Date: 2011-12-20 11:39:51 UTC
  • mto: (0.10.23) (1.1.48)
  • mto: This revision was merged to the branch mainline in revision 244.
  • Revision ID: package-import@ubuntu.com-20111220113951-cx9svdcnqpcta5wk
Tags: upstream-1.11.99.2
ImportĀ upstreamĀ versionĀ 1.11.99.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
                        break;
103
103
 
104
104
                case EOF_TOKEN:
105
 
                        Error (UNEXPECTED_EOF_MSG, NULL);
 
105
                        Error (UNEXPECTED_EOF_MSG);
106
106
                        break;
107
107
                default:
108
108
                        Error (INVALID_KEYWORD_MSG, xf86tokenString ());
164
164
                        }
165
165
                        break;
166
166
                case EOF_TOKEN:
167
 
                        Error (UNEXPECTED_EOF_MSG, NULL);
 
167
                        Error (UNEXPECTED_EOF_MSG);
168
168
                        break;
169
169
                default:
170
170
                        Error (INVALID_KEYWORD_MSG, xf86tokenString ());
174
174
        }
175
175
 
176
176
        if (!has_ident)
177
 
                Error (NO_IDENT_MSG, NULL);
 
177
                Error (NO_IDENT_MSG);
178
178
 
179
179
#ifdef DEBUG
180
180
        printf ("Vendor section parsed\n");