return LIBAVRDUDE_EXIT instead of exit(0)

This commit is contained in:
Stefan Rueger
2024-04-22 15:17:45 +01:00
parent 38d8bf0b7a
commit bedfaed6c6
2 changed files with 2 additions and 1 deletions

View File

@@ -59,6 +59,7 @@ typedef uint32_t pinmask_t;
#define LIBAVRDUDE_NOTSUPPORTED (-2) // operation not supported
#define LIBAVRDUDE_SOFTFAIL (-3) // returned, eg, by avr_signature() if caller
// might proceed with chip erase
#define LIBAVRDUDE_EXIT (-4) // End all operations in this session
/* formerly lists.h */

View File

@@ -417,7 +417,7 @@ static int linuxspi_parseextparams(const PROGRAMMER *pgm, const LISTID extparms)
msg_error("%s -c %s extended options:\n", progname, pgmid);
msg_error(" -xdisable_no_cs Do not use the SPI_NO_CS bit for the SPI driver\n");
msg_error(" -xhelp Show this help menu and exit\n");
return LIBAVRDUDE_SOFTFAIL;
return LIBAVRDUDE_EXIT;
}
pmsg_error("invalid extended parameter '%s'\n", extended_param);