naegelejd / duneOS

A simple UNIX-like operating system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why do you have two returns in duneOS/tests/strings.c?

stanman29 opened this issue · comments

Is the second return necessary in test_strncmp()?
code:
.....
ASSERT(strcmp(s4, s4) == 0);

return PASS;

return PASS;

....
end of function.

Good question, that's a silly mistake.