aboutsummaryrefslogtreecommitdiff
path: root/src/functionclose.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionclose.cpp')
-rw-r--r--src/functionclose.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/functionclose.cpp b/src/functionclose.cpp
index ac9c6f6..d652913 100644
--- a/src/functionclose.cpp
+++ b/src/functionclose.cpp
@@ -20,7 +20,7 @@ Bu::String FunctionClose::getName() const
20 20
21Variable FunctionClose::call( Variable &input, VarList ) 21Variable FunctionClose::call( Variable &input, VarList )
22{ 22{
23 FileMgr::getInstance().close( (int)input.getOpaque() ); 23 FileMgr::getInstance().close( (ptrdiff_t)input.getOpaque() );
24 return Variable(); 24 return Variable();
25} 25}
26 26