Fix small problem with one of the inline functions.

This commit is contained in:
H. Utku Maden 2021-08-09 13:47:58 +03:00
parent 8ef4b30a61
commit c8a7025789

@ -84,6 +84,7 @@ inline static int ds3231_endTemperatureF(ds3231_t driver, float *out_temperature
} }
*out_temperature = (float)iTemp / 4.0f; *out_temperature = (float)iTemp / 4.0f;
return 0;
} }
#endif #endif