aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-01-28 15:07:06 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2011-01-28 15:07:06 +0100
commite32ec046ef0588595cf0ada37ac0f9a6e994d534 (patch)
tree43e2eed03cc7d890ec32fe18fd4df0a664cf8f15
parentd3ecf42d638e5207deb0f735ca21f0e2fe3be682 (diff)
downloadosm-xapi-e32ec046ef0588595cf0ada37ac0f9a6e994d534.tar.gz
osm-xapi-e32ec046ef0588595cf0ada37ac0f9a6e994d534.tar.xz
osm-xapi-e32ec046ef0588595cf0ada37ac0f9a6e994d534.zip
removed undefined variable
-rw-r--r--src/nodejs/response.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodejs/response.js b/src/nodejs/response.js
index 45dcc89..9a92c66 100644
--- a/src/nodejs/response.js
+++ b/src/nodejs/response.js
@@ -41,7 +41,7 @@ exports.mkXmlRes = function (res){
}
res.atEnd = function(){
if(!this.started){
- this.atStart(pojo);
+ this.atStart();
}
this.write('</xml>');
this.end();