Fix missing parameter in err()

This commit is contained in:
Rodrigo Arias 2021-09-28 19:29:30 +02:00
parent abdbd8d64c
commit 5efcbfa626

View File

@ -51,7 +51,7 @@ ss_pop(struct ovni_ethread *t, int expected_st)
if(st > 0 && st != expected_st)
{
err("thread %d expected subsystem state %d (got %d)\n",
expected_st, st);
t->tid, expected_st, st);
exit(EXIT_FAILURE);
}