Skip to content

Commit

Permalink
humanTimeUnit 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Explorer09 committed Dec 21, 2024
1 parent 44fa73c commit 1f5973a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/GPUMeter.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static int humanTimeUnit(char* buffer, size_t size, unsigned long long int value
value /= 100;

if (value < 10000)
return xSnprintf(buffer, size, ".%04llus", value);
return xSnprintf(buffer, size, ".%04us", (unsigned int)value);

value /= 10; // milliseconds

Expand Down

0 comments on commit 1f5973a

Please sign in to comment.