X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Ftypes%2Flet_func.h;h=60fdefd2d5e62cc5cd51eaace2a32a9f6a3a1494;hb=ee06f0b1266635ca3cf20dd0373d358d71037ba2;hp=8917a0c82f5cd44736f076e798570fde0e07ed49;hpb=9bcb1df0786a8193d65949c857baaba2f4296e84;p=m6w6%2Fext-psi diff --git a/src/types/let_func.h b/src/types/let_func.h index 8917a0c..60fdefd 100644 --- a/src/types/let_func.h +++ b/src/types/let_func.h @@ -48,12 +48,12 @@ void psi_let_func_free(struct psi_let_func **func_ptr); void psi_let_func_dump(int fd, struct psi_let_func *func, unsigned level); void *psi_let_func_exec(struct psi_let_exp *func_val, struct psi_let_func *func, struct psi_decl_arg *darg, struct psi_call_frame *frame); -bool psi_let_func_validate(struct psi_data *data, struct psi_let_exp *exp, struct psi_let_func *func, struct psi_impl *impl); +bool psi_let_func_validate(struct psi_data *data, struct psi_let_func *func, struct psi_validate_scope *scope); #include "marshal.h" static inline psi_marshal_let locate_let_func_fn(token_t type) { - psi_marshal_let let_fn = NULL; + psi_marshal_let let_fn; switch (type) { case PSI_T_BOOLVAL: let_fn = psi_let_boolval; break; @@ -66,6 +66,7 @@ static inline psi_marshal_let locate_let_func_fn(token_t type) { case PSI_T_ZVAL: let_fn = psi_let_zval; break; case PSI_T_VOID: let_fn = psi_let_void; break; case PSI_T_COUNT: let_fn = psi_let_count; break; + default: let_fn = NULL; break; } return let_fn; }