pike.git/
src/
pike_types.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2020-08-19
2020-08-19 15:38:38 by Henrik Grubbström (Grubba) <grubba@grubba.org>
fb013e3f847aee2a8d39b2d130ba793e917191e0 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Compiler
[Typechecker]
: Fixed invalid deref in debug code.
2385:
simple_describe_type(s->car); s = s->cdr; if ((s->type == T_FUNCTION) ||
-
(s->car->type != T_VOID)) {
+
(
(
s->
type == T_MANY) && (s->
car->type != T_VOID))
)
{
fprintf(stderr, ", "); } }