summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-12-21 09:22:40 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-12-21 09:22:40 (GMT)
commit64cbc4e1dc17492d89915a9d774dc15ee438ccfe (patch)
treede55eaf5d43ac6d35a02fe26a8a96642cb722a55 /tests
parent9546ba62d01a9618aab91eafe77929120653d275 (diff)
downloadlz4-64cbc4e1dc17492d89915a9d774dc15ee438ccfe.zip
lz4-64cbc4e1dc17492d89915a9d774dc15ee438ccfe.tar.gz
lz4-64cbc4e1dc17492d89915a9d774dc15ee438ccfe.tar.bz2
improved MinGW support
Diffstat (limited to 'tests')
-rw-r--r--tests/frametest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/frametest.c b/tests/frametest.c
index ba971d6..8b7caba 100644
--- a/tests/frametest.c
+++ b/tests/frametest.c
@@ -92,7 +92,7 @@ static clock_t g_clockTime = 0;
*****************************************/
static U32 no_prompt = 0;
static U32 displayLevel = 2;
-static U32 pause = 0;
+static U32 use_pause = 0;
/*-*******************************************************
@@ -705,7 +705,7 @@ _end:
free(compressedBuffer);
free(decodedBuffer);
- if (pause) {
+ if (use_pause) {
DISPLAY("press enter to finish \n");
(void)getchar();
}
@@ -777,7 +777,7 @@ int main(int argc, const char** argv)
break;
case 'p': /* pause at the end */
argument++;
- pause = 1;
+ use_pause = 1;
break;
case 'i':