Skip to content

Commit

Permalink
Use gv_stashpv instead of gv_stashpvs
Browse files Browse the repository at this point in the history
gv_stashpvs isn't available on various perls, apparently.
  • Loading branch information
rafl authored and rjbs committed May 15, 2010
1 parent b7860fd commit a238b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UUID.xs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ BOOT:
instances = ptable_new();
MUTEX_INIT(&instances_mutex);
#endif
HV *stash = gv_stashpvs("Data::UUID", 0);
HV *stash = gv_stashpv("Data::UUID", 0);
STRLEN len = sizeof(perl_uuid_t);
newCONSTSUB(stash, "NameSpace_DNS", newSVpv((char *)&NameSpace_DNS, len));
newCONSTSUB(stash, "NameSpace_URL", newSVpv((char *)&NameSpace_URL, len));
Expand Down

0 comments on commit a238b13

Please sign in to comment.