Clears up gcc warning on Solaris: common_device_name.c: In function 'pci_id_file_open': common_device_name.c:83:17: warning: unused variable 'result' [-Wunused-variable]
Signed-off-by: Alan Coopersmith <[email protected]> --- src/common_device_name.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common_device_name.c b/src/common_device_name.c index 8c73dbd..a990ac8 100644 --- a/src/common_device_name.c +++ b/src/common_device_name.c @@ -80,9 +80,9 @@ typedef FILE * pci_id_file; static pci_id_file pci_id_file_open(void) { +#ifndef __sun pci_id_file result; -#ifndef __sun result = fopen(PCIIDS_PATH "/pci.ids", "re"); if (result) return result; -- 1.7.9.2 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
