Browse Source

Remove unnecessary enum identifier.

Aaron Mavrinac 2 years ago
parent
commit
e3cd903146
1 changed files with 1 additions and 1 deletions
  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;