Explorar el Código

Remove unnecessary enum identifier.

Aaron Mavrinac hace 2 años
padre
commit
e3cd903146
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;