mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-09-23 17:46:33 +03:00
Make string variables local const
This commit is contained in:
@@ -691,8 +691,8 @@ static int buspirate_start_spi_mode_ascii(const PROGRAMMER *pgm) {
|
||||
}
|
||||
|
||||
static void buspirate_enable(PROGRAMMER *pgm, const AVRPART *p) {
|
||||
static const char *reset_str = "#\n";
|
||||
static const char *accept_str = "y\n";
|
||||
const char * const reset_str = "#\n";
|
||||
const char * const accept_str = "y\n";
|
||||
char *rcvd;
|
||||
int rc, print_banner = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user