]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #47874 - jcowgill:mips-from_raw_os_error, r=dtolnay
authorkennytm <kennytm@gmail.com>
Wed, 31 Jan 2018 08:36:09 +0000 (16:36 +0800)
committerGitHub <noreply@github.com>
Wed, 31 Jan 2018 08:36:09 +0000 (16:36 +0800)
commit33d175f74d588235751302a8dbb6350d893bbff0
tree7d560a21df674b2969791a3ca2339ffad4eb3921
parentc66c6b7ee73a89ac6a6266f98244a71c0bf05f4d
parente9d70417cae7fcb08323351d9388b65b39560156
Rollup merge of #47874 - jcowgill:mips-from_raw_os_error, r=dtolnay

std: use more portable error number in from_raw_os_error docs

On MIPS, error number 98 is not `EADDRINUSE` (it is `EPROTOTYPE`). To fix the resulting test failure this causes, use a more portable error number in the example documentation. `EINVAL` shold be more reliable because it was defined in the original Unix as 22 so hopefully most derivatives have defined it the same way.