X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/333f40fa0f67b2b9562db498d8591e2d48bcd319..3f88ef88f347c2c2d7a77db9faab6652dd9c9042:/avr/cmd_attach.c diff --git a/avr/cmd_attach.c b/avr/cmd_attach.c index d7bcafd..e9b5ccd 100644 --- a/avr/cmd_attach.c +++ b/avr/cmd_attach.c @@ -35,10 +35,10 @@ void printerror(int rc, uint8_t unit, char *fn) if (rc < 0 || (unsigned) rc >= ARRAY_SIZE(rc_messages)) rc = 1; -#if GCC_BUG_61443 * 0 - printf_P(PSTR("rc=%u FR_"), rc); - my_puts_P(rc_names[rc]); - my_puts_P(PSTR("\n")); +#if GCC_BUG_61443 + printf_P(PSTR("Attachment of '%s' to dsk%d failed: "), fn, unit); + my_puts_P(rc_messages[rc]); + my_puts_P(PSTR("!\n")); #else printf_P(PSTR("Attachment of '%s' to dsk%d failed: %S!\n"), fn, unit, rc_messages[rc]);