git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16372 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2006-02-13 00:30:48 +00:00
parent c4d9fc29b5
commit 2381701493

View File

@ -1049,7 +1049,7 @@ shutdown_media_server(bigtime_t timeout,
return err;
int32 rv;
if ((err = reply.FindInt32("error", &rv)) == B_OK && rv != B_OK)
if (reply.FindInt32("error", &rv) == B_OK && rv != B_OK)
return rv;
}
@ -1061,7 +1061,7 @@ shutdown_media_server(bigtime_t timeout,
return err;
int32 rv;
if ((err = reply.FindInt32("error", &rv)) == B_OK && rv != B_OK)
if (reply.FindInt32("error", &rv) == B_OK && rv != B_OK)
return rv;
}