summaryrefslogtreecommitdiffstats
path: root/programs/bench.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-12-17 11:20:17 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-12-17 11:20:17 (GMT)
commit0569a68edd58d741e46ec1e50d6dd936de77dbfa (patch)
tree3a9017e21e5b36c5dea8cf87bcd7b46285e342e6 /programs/bench.c
parent8a9fb8cf3229c9a704c982667c63ac440b8487ba (diff)
downloadlz4-0569a68edd58d741e46ec1e50d6dd936de77dbfa.zip
lz4-0569a68edd58d741e46ec1e50d6dd936de77dbfa.tar.gz
lz4-0569a68edd58d741e46ec1e50d6dd936de77dbfa.tar.bz2
C90 compatibility
Diffstat (limited to 'programs/bench.c')
-rw-r--r--programs/bench.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/bench.c b/programs/bench.c
index ba3284e..02e56c9 100644
--- a/programs/bench.c
+++ b/programs/bench.c
@@ -79,7 +79,7 @@ static int LZ4_compress_local(const char* src, char* dst, int size, int clevel)
/**************************************
* Basic Types
***************************************/
-#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L // C99
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */
# include <stdint.h>
typedef uint8_t BYTE;
typedef uint16_t U16;
@@ -247,7 +247,7 @@ int BMK_benchFile(char** fileNamesTable, int nbFiles, int cLevel)
double totald = 0.;
- // Init
+ /* Init */
if (cLevel <= 3) cfunctionId = 0; else cfunctionId = 1;
switch (cfunctionId)
{