Shorten rev

This commit is contained in:
Theo Arends 2022-04-23 18:25:08 +02:00
parent 5d40295fa6
commit 88fe48c6eb
1 changed files with 1 additions and 1 deletions

View File

@ -786,7 +786,7 @@ typedef struct {
esp_chip_info(&chip_info);
char revision[12];
snprintf_P(revision, sizeof(revision), PSTR(" (rev. %d)"), chip_info.revision);
snprintf_P(revision, sizeof(revision), PSTR(" rev.%d"), chip_info.revision);
return revision;
}