return LIBAVRDUDE_EXIT instead of exit(0)

This commit is contained in:
Stefan Rueger
2024-04-22 15:17:46 +01:00
parent 00cc9718ad
commit 1f4dbe8d40
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

@@ -1026,7 +1026,7 @@ static int serialupdi_parseextparms(const PROGRAMMER *pgm, const LISTID extparms
msg_error("%s -c %s extended options:\n", progname, pgmid);
msg_error(" -xrtsdtr=low,high Force RTS/DTR lines low or high state during programming\n");
msg_error(" -xhelp Show this help menu and exit\n");
exit(0);
return LIBAVRDUDE_EXIT;;
}
pmsg_error("invalid extended parameter '%s'\n", extended_param);