Correct almost all compiler warning issues

This commit is contained in:
RichardHitt
2013-01-19 12:33:16 -08:00
parent a46f89998c
commit 4e0daf047e
11 changed files with 27 additions and 27 deletions

View File

@@ -37,9 +37,13 @@
int xs_parse_cpu(char *model, char *vendor, double *freq, char *cache, unsigned int *count)
{
char buffer[bsize], *pos;
#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__alpha__) || defined(__ia64__) || defined(__parisc__) || defined(__sparc__)
char buffer[bsize];
#endif
#if defined(__powerpc__)
char *pos = NULL;
#endif
FILE *fp = fopen("/proc/cpuinfo", "r");
pos = NULL;
if(fp == NULL)
return 1;
if(count != NULL) *count = 0;