Skip to content

Commit

Permalink
Fix require path for buffer_ieee754
Browse files Browse the repository at this point in the history
  • Loading branch information
SystemParadox committed Sep 25, 2014
1 parent 84cb243 commit 91c62a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hoard.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ create = (filename, archives, xFilesFactor, cb) ->
# Using 'buffer_ieee754' from node 0.5.x
# as no libraries had a working IEEE754 encoder
buffer = new Buffer(4)
require('buffer_ieee754').writeIEEE754(buffer, 0.5, 0, 'big', 23, 4);
require('./buffer_ieee754').writeIEEE754(buffer, 0.5, 0, 'big', 23, 4);
buffer

buffer = Put()
Expand Down

0 comments on commit 91c62a8

Please sign in to comment.