diff options
author | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-11-06 22:06:42 +0000 |
---|---|---|
committer | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-11-06 22:06:42 +0000 |
commit | b1fd15dab1103d9943a304207183997b811f4a08 (patch) | |
tree | 03b929ca66594fec15a838ad6a20f3f5e719e5d5 /src | |
parent | 5f93d651b3aae18d64c053eff53a2f410cde7f4d (diff) |
Fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/rrdFilter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rrdFilter.js b/src/lib/rrdFilter.js index 960a429..5d97710 100644 --- a/src/lib/rrdFilter.js +++ b/src/lib/rrdFilter.js @@ -410,7 +410,7 @@ RRDRRAFilterAvgNewSteps.prototype.getMinStep = function() {return this.fobj.getM RRDRRAFilterAvgNewSteps.prototype.getLastUpdate = function() {return this.fobj.getLastUpdate();}
RRDRRAFilterAvgNewSteps.prototype.getNrDSs = function() {return this.fobj.getNrDSs();}
RRDRRAFilterAvgNewSteps.prototype.getDSNames = function() {return this.fobj.getDSNames();}
-RRDRRAFilterAvgNewSteps.prototype.getDS = function(id) {return this.fobj.getDS();}
+RRDRRAFilterAvgNewSteps.prototype.getDS = function(id) {return this.fobj.getDS(id);}
RRDRRAFilterAvgNewSteps.prototype.getNrRRAs = function() {return this.fobj.getNrRRAs();}
RRDRRAFilterAvgNewSteps.prototype.getRRAInfo = function(idx) { return this.fobj.getRRAInfo(idx);}
RRDRRAFilterAvgNewSteps.prototype.getRRA = function(idx) { return this.fobj.getRRA(idx);}
|