]> mj.ucw.cz Git - pciutils.git/commitdiff
Avoid pointer signedness warnings.
authorMartin Mares <mj@ucw.cz>
Mon, 11 Feb 2008 14:52:39 +0000 (15:52 +0100)
committerMartin Mares <mj@ucw.cz>
Mon, 11 Feb 2008 14:52:39 +0000 (15:52 +0100)
lib/names.c

index 3eec0a4211a8dfbbd680550b33be93f76c1b8f46..c7b1abe94c83d7c963517ec77a698f76a479d956 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- ID to Name Translation
  *
- *     Copyright (c) 1997--2007 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2008 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -134,7 +134,8 @@ static inline unsigned int id_hash(int cat, u32 id12, u32 id34)
 
 static char *id_net_lookup(struct pci_access *a, int cat, int id1, int id2, int id3, int id4)
 {
-  byte name[256], dnsname[256], answer[4096], txt[256];
+  char name[256], dnsname[256], txt[256];
+  byte answer[4096];
   const byte *data;
   int res, i, j, dlen;
   ns_msg m;