New upstream version 24.0.1+dfsg1

This commit is contained in:
Sebastian Ramacher 2019-09-22 23:19:10 +02:00
parent b14f9eae6d
commit 5a730d6ec3
842 changed files with 42245 additions and 33385 deletions

View file

@ -24,9 +24,9 @@ extern "C" {
#endif
struct decl_param {
char *name;
char *name;
enum call_param_type type;
uint32_t flags;
uint32_t flags;
};
static inline void decl_param_free(struct decl_param *param)
@ -37,8 +37,8 @@ static inline void decl_param_free(struct decl_param *param)
}
struct decl_info {
char *name;
const char *decl_string;
char *name;
const char *decl_string;
DARRAY(struct decl_param) params;
};
@ -46,7 +46,7 @@ static inline void decl_info_free(struct decl_info *decl)
{
if (decl) {
for (size_t i = 0; i < decl->params.num; i++)
decl_param_free(decl->params.array+i);
decl_param_free(decl->params.array + i);
da_free(decl->params);
bfree(decl->name);