summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/fseek/test1
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/fseek/test1')
-rw-r--r--src/pal/tests/palsuite/c_runtime/fseek/test1/CMakeLists.txt2
-rw-r--r--src/pal/tests/palsuite/c_runtime/fseek/test1/test1.cpp (renamed from src/pal/tests/palsuite/c_runtime/fseek/test1/test1.c)2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/fseek/test1/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/fseek/test1/CMakeLists.txt
index fb55bd1051..59ee8b4563 100644
--- a/src/pal/tests/palsuite/c_runtime/fseek/test1/CMakeLists.txt
+++ b/src/pal/tests/palsuite/c_runtime/fseek/test1/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.12.2)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(SOURCES
- test1.c
+ test1.cpp
)
add_executable(paltest_fseek_test1
diff --git a/src/pal/tests/palsuite/c_runtime/fseek/test1/test1.c b/src/pal/tests/palsuite/c_runtime/fseek/test1/test1.cpp
index 8496289a01..dd1e87ea8d 100644
--- a/src/pal/tests/palsuite/c_runtime/fseek/test1/test1.c
+++ b/src/pal/tests/palsuite/c_runtime/fseek/test1/test1.cpp
@@ -23,7 +23,7 @@ static BOOL Cleanup(HANDLE hFile)
{
BOOL result= TRUE;
- if (fclose(hFile))
+ if (fclose((PAL_FILE*)hFile))
{
Trace("fseek: ERROR -> Unable to close file \"%s\".\n",
filename);