summaryrefslogtreecommitdiff
path: root/avr/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/strerror.c')
-rw-r--r--avr/strerror.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/avr/strerror.c b/avr/strerror.c
index a4d2a67..199504a 100644
--- a/avr/strerror.c
+++ b/avr/strerror.c
@@ -10,18 +10,18 @@
static const FLASH char * const FLASH error_strings[] = {
FSTR("Unknown error"),
- FSTR("Not enough memory"),
- FSTR("Interrupt"),
- FSTR("Bus timeout"),
- FSTR("Unexpected argument"),
- FSTR("Invalid disk number"),
- FSTR("Disk already attached"),
- FSTR("Disk not attached"),
- FSTR("Error opening file"),
- FSTR("File already attached to other drive"),
- FSTR("CPU is running"),
- FSTR("Invalid argument"),
- FSTR("Unexpected EOF"),
+ FSTR("Not enough memory"), /* 101 */
+ FSTR("Interrupt"), /* 102 */
+ FSTR("Bus timeout"), /* 103 */
+ FSTR("Unexpected argument"), /* 104 */
+ FSTR("Invalid disk number"), /* 105 */
+ FSTR("Disk already attached"), /* 106 */
+ FSTR("Disk not attached"), /* 107 */
+ FSTR("Error opening file"), /* 108 */
+ FSTR("File already attached to other drive"), /* 109 */
+ FSTR("CPU is running"), /* 110 */
+ FSTR("Invalid argument"), /* 111 */
+ FSTR("Unexpected EOF"), /* 112 */
};