Commit cb08534a authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvcrt: Remove a superfluous semicolon.

parent e198b4eb
......@@ -129,7 +129,7 @@ void msvcrt_set_errno(int err)
switch(err)
{
#define ERR_CASE(oserr) case oserr:
#define ERR_MAPS(oserr,crterr) case oserr:*errno = crterr;break;
#define ERR_MAPS(oserr, crterr) case oserr: *errno = crterr; break
ERR_CASE(ERROR_ACCESS_DENIED)
ERR_CASE(ERROR_NETWORK_ACCESS_DENIED)
ERR_CASE(ERROR_CANNOT_MAKE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment