aboutsummaryrefslogtreecommitdiff
path: root/src/functionclose.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionclose.cpp')
-rw-r--r--src/functionclose.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/functionclose.cpp b/src/functionclose.cpp
index d652913..173e224 100644
--- a/src/functionclose.cpp
+++ b/src/functionclose.cpp
@@ -3,7 +3,7 @@
3 3
4#include <bu/plugger.h> 4#include <bu/plugger.h>
5PluginInterface3( pluginFunctionClose, close, FunctionClose, Function, 5PluginInterface3( pluginFunctionClose, close, FunctionClose, Function,
6 "Mike Buland", 0, 1 ); 6 "Mike Buland", 0, 1 );
7 7
8FunctionClose::FunctionClose() 8FunctionClose::FunctionClose()
9{ 9{
@@ -15,12 +15,12 @@ FunctionClose::~FunctionClose()
15 15
16Bu::String FunctionClose::getName() const 16Bu::String FunctionClose::getName() const
17{ 17{
18 return "close"; 18 return "close";
19} 19}
20 20
21Variable FunctionClose::call( Variable &input, VarList ) 21Variable FunctionClose::call( Variable &input, VarList )
22{ 22{
23 FileMgr::getInstance().close( (ptrdiff_t)input.getOpaque() ); 23 FileMgr::getInstance().close( (ptrdiff_t)input.getOpaque() );
24 return Variable(); 24 return Variable();
25} 25}
26 26