Skip to content

Commit

Permalink
kernel_headers/sdcc: fix errors values in the header file
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeal8bit committed Nov 23, 2024
1 parent b520053 commit c847e14
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions kernel_headers/sdcc/include/zos_errors.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* SPDX-FileCopyrightText: 2023 Zeal 8-bit Computer <[email protected]>
/* SPDX-FileCopyrightText: 2023-2024 Zeal 8-bit Computer <[email protected]>
*
* SPDX-License-Identifier: Apache-2.0
*/
Expand Down Expand Up @@ -26,12 +26,12 @@ typedef enum {
ERR_ALREADY_MOUNTED = 17,
ERR_READ_ONLY = 18,
ERR_BAD_MODE = 19,
ERR_CANNOT_REGISTER_MORE = 21,
ERR_NO_MORE_ENTRIES = 22,
ERR_NO_MORE_MEMORY = 23,
ERR_NOT_A_DIR = 24,
ERR_NOT_A_FILE = 25,
ERR_ENTRY_CORRUPTED = 26,
ERR_DIR_NOT_EMPTY = 27,
ERR_CANNOT_REGISTER_MORE = 20,
ERR_NO_MORE_ENTRIES = 21,
ERR_NO_MORE_MEMORY = 22,
ERR_NOT_A_DIR = 23,
ERR_NOT_A_FILE = 24,
ERR_ENTRY_CORRUPTED = 25,
ERR_DIR_NOT_EMPTY = 26,
} zos_err_t;

0 comments on commit c847e14

Please sign in to comment.