Skip to content

Commit

Permalink
fix: fds to start from 0x7fffffff instead of 0xffffffff (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
reinaldoarrosi authored and streamich committed Dec 11, 2018
1 parent 107ccb0 commit 31e44ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/volume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ export class Volume {
* @type {number}
* @todo This should not be static, right?
*/
static fd: number = 0xffffffff;
static fd: number = 0x7fffffff;

// Constructor function used to create new nodes.
// NodeClass: new (...args) => TNode = Node as new (...args) => TNode;
Expand Down

0 comments on commit 31e44ba

Please sign in to comment.