Changes for master branch

FossilOrigin-Name: 6ce3d850ae4bcf768f34de5c5550fd1be85e59f28eec6183be38430b64135f33
This commit is contained in:
7u83@mail.ru 2018-03-04 17:57:58 +00:00
parent 8f12f61dbd
commit b48a53e3c2
2 changed files with 9 additions and 2 deletions

7
src/cw/mavl_free_str.c Normal file
View File

@ -0,0 +1,7 @@
#include "mavl.h"
/*
void mavl_free_str(union mavldata *data){
free(data->str);
}
*/

View File

@ -1,7 +1,7 @@
#include "cw.h"
#include "mavl.h"
#include "cw/dbg.h"
#include "dbg.h"
#include "message_set.h"
@ -158,4 +158,4 @@ mlist_t cw_msgset_get_msg(cw_MsgSet_t * set, int type){
}
return result->elements_list;
}
}