32-bit-strlen-warning
This commit is contained in:
parent
13d3f75297
commit
86627811d7
|
@ -562,10 +562,10 @@ static void IMPL_register_xps_signature_attribute(pTHX_ const char *name, const
|
||||||
{
|
{
|
||||||
if(funcs->ver < 5)
|
if(funcs->ver < 5)
|
||||||
croak("Mismatch in signature param attribute ABI version field: module wants %u; we require >= 5\n",
|
croak("Mismatch in signature param attribute ABI version field: module wants %u; we require >= 5\n",
|
||||||
funcs->ver);
|
(int)funcs->ver);
|
||||||
if(funcs->ver > XSPARSESUBLIKE_ABI_VERSION)
|
if(funcs->ver > XSPARSESUBLIKE_ABI_VERSION)
|
||||||
croak("Mismatch in signature param attribute ABI version field: module wants %u; we support <= %d\n",
|
croak("Mismatch in signature param attribute ABI version field: module wants %u; we support <= %d\n",
|
||||||
funcs->ver, XSPARSESUBLIKE_ABI_VERSION);
|
(int)funcs->ver, XSPARSESUBLIKE_ABI_VERSION);
|
||||||
|
|
||||||
if(!name || !(name[0] >= 'A' && name[0] <= 'Z'))
|
if(!name || !(name[0] >= 'A' && name[0] <= 'Z'))
|
||||||
croak("Signature param attribute names must begin with a capital letter");
|
croak("Signature param attribute names must begin with a capital letter");
|
||||||
|
|
Loading…
Reference in New Issue