# HG changeset patch # User Merten Sach # Date 1313421925 -7200 # Node ID 31a2489204290a9158c099d6813a7d07cdd0b49b # Parent 7a39408f9ea3868eb8ca3350a1d0d01aa571ff4a removed unused variable diff -r 7a39408f9ea3 -r 31a248920429 Histogram.c --- a/Histogram.c Mon Jul 11 18:10:52 2011 +0200 +++ b/Histogram.c Mon Aug 15 17:25:25 2011 +0200 @@ -165,7 +165,7 @@ FILE *output; int32 binIdx, binStart, binEnd, centerValue, width; int32 maxHeight, i,n; - float32 total, total2, binPercent, expectedValue1, expectedValue2; + float32 total, total2, expectedValue1, expectedValue2; if(hist == NULL || hist->name == NULL) return; @@ -226,10 +226,10 @@ fprintf(output, "# Hardware Architecture: "); #ifdef __x86_64 fprintf(output, "x86_64"); -#endif __ +#endif //__x86_64 #ifdef __i386 fprintf(output, "x86"); -#endif +#endif //__i386 fprintf(output, "\n"); fprintf(output, "# GCC VERSION: %d.%d.%d\n",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__); fprintf(output, "# Build Date: %s %s\n", __DATE__, __TIME__);