diff options
Diffstat (limited to '')
-rw-r--r-- | src/functionclose.cpp | 2 | ||||
-rw-r--r-- | src/functionread.cpp | 2 | ||||
-rw-r--r-- | src/functionwrite.cpp | 2 |
3 files changed, 3 insertions, 3 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 | ||
diff --git a/src/functionread.cpp b/src/functionread.cpp index 789e9e1..b9c8397 100644 --- a/src/functionread.cpp +++ b/src/functionread.cpp | |||
@@ -26,7 +26,7 @@ Variable FunctionRead::call( Variable &input, VarList lParams ) | |||
26 | int iSize = lParams.first().toInt(); | 26 | int iSize = lParams.first().toInt(); |
27 | Bu::String sBuf( iSize ); | 27 | Bu::String sBuf( iSize ); |
28 | sBuf.resize( | 28 | sBuf.resize( |
29 | FileMgr::getInstance().get( (int)input.getOpaque() ).read( | 29 | FileMgr::getInstance().get( (ptrdiff_t)input.getOpaque() ).read( |
30 | sBuf.getStr(), iSize | 30 | sBuf.getStr(), iSize |
31 | ) | 31 | ) |
32 | ); | 32 | ); |
diff --git a/src/functionwrite.cpp b/src/functionwrite.cpp index 7abb661..14a396a 100644 --- a/src/functionwrite.cpp +++ b/src/functionwrite.cpp | |||
@@ -26,7 +26,7 @@ Variable FunctionWrite::call( Variable &input, VarList lParams ) | |||
26 | "write takes one parameter, the string to write." | 26 | "write takes one parameter, the string to write." |
27 | ); | 27 | ); |
28 | } | 28 | } |
29 | FileMgr::getInstance().get( (int)input.getOpaque() ).write( | 29 | FileMgr::getInstance().get( (ptrdiff_t)input.getOpaque() ).write( |
30 | lParams.first().toString() | 30 | lParams.first().toString() |
31 | ); | 31 | ); |
32 | return Variable(); | 32 | return Variable(); |