Skip to content
Snippets Groups Projects
Commit a264cbda authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

debug modified so it doesn't kill uLPC by accident..

Rev: src/modules/call_out/call_out.c:1.5
parent 453f4cab
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ static void verify_call_outs()
if(!(v=pending_calls[e]->args))
fatal("No arguments to call\n");
if(v->refs!=1)
fatal("Array should exactly have one reference.\n");
if(v->refs < 1)
fatal("Array should have at least one reference.\n");
if(v->malloced_size<v->size)
fatal("Impossible array.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment