From Ben Turner: fix an addVendor() call.

svn path=/trunk/; revision=13617
This commit is contained in:
Guy Harris 2005-03-06 03:28:41 +00:00
parent 84f0170f07
commit c9826f64d8
2 changed files with 2 additions and 1 deletions

View File

@ -2403,6 +2403,7 @@ Yoshihiro Oyama <y.oyama [AT] netagent.co.jp>
Chris Eagle <cseagle [AT] nps.edu>
Dominique Bastien <dbastien [AT] accedian.com>
Nicolas Dichtel <nicolas.dichtel [AT] 6wind.com>
Ben Turner <ext.ben.turner [AT] siemens.be>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -636,7 +636,7 @@ xmlParseVendor(xmlNodePtr cur)
return -1;
}
return (addVendor(atoi(code), id, name));
return (addVendor(atoi(id), code, name));
} /* addVendor */