Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Histogram
changeset 11:31a248920429
removed unused variable
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Mon, 15 Aug 2011 17:25:25 +0200 |
| parents | 7a39408f9ea3 |
| children | 20410d90dabb |
| files | Histogram.c |
| diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line diff
1.1 --- a/Histogram.c Mon Jul 11 18:10:52 2011 +0200 1.2 +++ b/Histogram.c Mon Aug 15 17:25:25 2011 +0200 1.3 @@ -165,7 +165,7 @@ 1.4 FILE *output; 1.5 int32 binIdx, binStart, binEnd, centerValue, width; 1.6 int32 maxHeight, i,n; 1.7 - float32 total, total2, binPercent, expectedValue1, expectedValue2; 1.8 + float32 total, total2, expectedValue1, expectedValue2; 1.9 1.10 if(hist == NULL || hist->name == NULL) 1.11 return; 1.12 @@ -226,10 +226,10 @@ 1.13 fprintf(output, "# Hardware Architecture: "); 1.14 #ifdef __x86_64 1.15 fprintf(output, "x86_64"); 1.16 -#endif __ 1.17 +#endif //__x86_64 1.18 #ifdef __i386 1.19 fprintf(output, "x86"); 1.20 -#endif 1.21 +#endif //__i386 1.22 fprintf(output, "\n"); 1.23 fprintf(output, "# GCC VERSION: %d.%d.%d\n",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__); 1.24 fprintf(output, "# Build Date: %s %s\n", __DATE__, __TIME__);
