uninitialized variable

This commit is contained in:
Enno Rehling 2015-07-12 01:38:22 +02:00
parent 3f57431e0b
commit a3a2e3074d
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ const message_type *register_msg(const char *type, int n_param, ...) {
void assert_messages(struct CuTest * tc, struct mlist *msglist, const message_type **types,
int num_msgs, bool exact_match, ...) {
va_list args;
int found, argc = -1;
int found = 0, argc = -1;
struct message *msg;
bool match = true;