Skip to content
Snippets Groups Projects
Commit b877db93 authored by Charlie McConnell's avatar Charlie McConnell Committed by Ben Noordhuis
Browse files

unix: map EDQUOT to UV_ENOSPC

parent 9a483811
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,7 @@ uv_err_code uv_translate_sys_error(int sys_errno) {
case ENOSPC: return UV_ENOSPC;
case EROFS: return UV_EROFS;
case ENOMEM: return UV_ENOMEM;
case EDQUOT: return UV_ENOSPC;
default: return UV_UNKNOWN;
}
UNREACHABLE();
......
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