fix memory pool (generation)

This commit is contained in:
matthias.ringwald 2012-11-07 17:31:37 +00:00
parent 280ef8cfb9
commit 613e74c01b

View File

@ -29,7 +29,8 @@ void * btstack_memory_STRUCT_NAME_get(void){
void btstack_memory_STRUCT_NAME_free(void *STRUCT_NAME){
free(STRUCT_NAME);
}
#else error "The struct STRUCT_NAME has neither HAVE_MALLOC nor POOL_COUNT defined. Please, edit the config file."
#else
#error "The struct STRUCT_NAME has neither HAVE_MALLOC nor POOL_COUNT defined. Please, edit the config file."
#endif
"""