Skip to content

Commit

Permalink
Revert "Default 6th parameter in mmap call to undef since we're defau…
Browse files Browse the repository at this point in the history
…lting the 5th"

This reverts commit 6303d77.

This was a bad idea that never showed value.
  • Loading branch information
toddr committed Aug 18, 2011
1 parent 6303d77 commit 2c7c8dd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
Todd Rinaldo April 7 2011 v0.15_01
* Default 6th parameter in mmap call to undef since we're defaulting the 5th.

Todd Rinaldo April 4 2011 v0.15
* cpantesters looks good besides Win32. Waiting for someone from windows
world to care/submit patch
Expand Down
2 changes: 1 addition & 1 deletion Mmap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ require Exporter;
MAP_ANON MAP_ANONYMOUS MAP_FILE MAP_PRIVATE MAP_SHARED
PROT_EXEC PROT_NONE PROT_READ PROT_WRITE);

$VERSION = '0.15_01';
$VERSION = '0.15';

sub new {

Expand Down
2 changes: 1 addition & 1 deletion Mmap.xs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ hardwire(var, addr, len)


SV *
mmap(var, len, prot, flags, fh = 0, off_string = &PL_sv_undef)
mmap(var, len, prot, flags, fh = 0, off_string)
SV * var
size_t len
int prot
Expand Down

0 comments on commit 2c7c8dd

Please sign in to comment.