projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d5ce4a7
)
Better have a three-element array if one is going to assign
Jarkko Hietaniemi [Tue, 27 Mar 2001 20:21:38 +0000 (20:21 +0000)]
to the third element of that array. (from Tim Jenness)
p4raw-id: //depot/perl@9388
ext/XS/Typemap/Typemap.xs
patch
|
blob
|
blame
|
history
diff --git
a/ext/XS/Typemap/Typemap.xs
b/ext/XS/Typemap/Typemap.xs
index
d0d79d3
..
7c24c44
100644
(file)
--- a/
ext/XS/Typemap/Typemap.xs
+++ b/
ext/XS/Typemap/Typemap.xs
@@
-632,7
+632,7
@@
T_OPAQUE_array( a,b,c)
int b
int c
PREINIT:
- int array[2];
+ int array[3];
CODE:
array[0] = a;
array[1] = b;