summaryrefslogtreecommitdiff
path: root/avr/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/strerror.c')
-rw-r--r--avr/strerror.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/avr/strerror.c b/avr/strerror.c
index 199504a..f5850f7 100644
--- a/avr/strerror.c
+++ b/avr/strerror.c
@@ -10,7 +10,7 @@
static const FLASH char * const FLASH error_strings[] = {
FSTR("Unknown error"),
- FSTR("Not enough memory"), /* 101 */
+ FSTR("Not enough memory"), /* 101 */
FSTR("Interrupt"), /* 102 */
FSTR("Bus timeout"), /* 103 */
FSTR("Unexpected argument"), /* 104 */
@@ -22,6 +22,7 @@ static const FLASH char * const FLASH error_strings[] = {
FSTR("CPU is running"), /* 110 */
FSTR("Invalid argument"), /* 111 */
FSTR("Unexpected EOF"), /* 112 */
+ FSTR("Disk full"), /* 113 */
};