This simplified version just prints MSGIDs. I'll look
at the problem in more detail once Tinderbox is green again.
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
#if defined(_WIN32)
# include <windows.h>
#endif
-#include <stdlib.h>
#include "vm_assert.h"
#include "msg.h"
#include "str.h"
void
Msg_AppendMsgList(const MsgList *msgs)
{
- char *str = MsgList_ToString(msgs);
- Warning("%s [STUB]: %s\n", __FUNCTION__, str);
- free(str);
+ while (msgs != NULL) {
+ Warning("%s [STUB]: %s\n", __FUNCTION__, msgs->id);
+ }
}