Skip to content

Commit

Permalink
fixing bug that prevented buffered writes from happening
Browse files Browse the repository at this point in the history
  • Loading branch information
pathsny committed Apr 11, 2011
1 parent cc9a5e3 commit 29a7548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/alfred/files/buffered_file.js
Expand Up @@ -21,7 +21,7 @@ var BufferedFile = function(file_path, callback) {

this.flush_callback_queue = [];

File.call(this, file_path, options, function(err) {
File.call(this, file_path, this.options, function(err) {
if (err) {
callback(err);
} else {
Expand Down

0 comments on commit 29a7548

Please sign in to comment.