Small fixes: uptime, printf %f, math, and readme

This commit is contained in:
xamidev
2024-08-08 13:28:47 +02:00
parent 99b26c1220
commit da127ee6b2
6 changed files with 23 additions and 28 deletions

View File

@@ -183,7 +183,6 @@ void dtostrf(double val, char *buffer, int precision)
double fractional_part = val - whole_part;
if (fractional_part < 0) fractional_part = -fractional_part;
char *start = buffer;
if (whole_part == 0)
{
*buffer++ = '0';