From 26458fc1e8b9ce47a672ddec1533caed7f21793c Mon Sep 17 00:00:00 2001 From: Ezekiel Bethel Date: Wed, 10 Apr 2019 02:47:49 +0100 Subject: [PATCH] add 0x402 (path exists) => EEXIST mapping in fs_dev --- nx/source/runtime/devices/fs_dev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nx/source/runtime/devices/fs_dev.c b/nx/source/runtime/devices/fs_dev.c index bce39331..c581752a 100644 --- a/nx/source/runtime/devices/fs_dev.c +++ b/nx/source/runtime/devices/fs_dev.c @@ -1599,7 +1599,8 @@ typedef struct static const error_map_t error_table[] = { /* keep this list sorted! */ - { 0x202, ENOENT, }, + { 0x202, ENOENT, }, + { 0x402, EEXIST, }, { 0x2EE202, EINVAL, }, { 0x2EE602, ENAMETOOLONG, }, };