diff options
Diffstat (limited to '')
-rw-r--r-- | src/functionclose.cpp | 2 |
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 | ||
21 | Variable FunctionClose::call( Variable &input, VarList ) | 21 | Variable 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 | ||