Просмотр исходного кода

Remove unnecessary enum identifier.

Aaron Mavrinac 2 лет назад
Родитель
Сommit
e3cd903146
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      gps_uart.h

+ 1 - 1
gps_uart.h

@@ -23,7 +23,7 @@ typedef struct {
     int time_seconds;
 } GpsStatus;
 
-typedef enum SpeedUnit { KNOTS, KPH, MPH, INVALID } SpeedUnit;
+typedef enum { KNOTS, KPH, MPH, INVALID } SpeedUnit;
 
 typedef struct {
     FuriMutex* mutex;