We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e3c65d commit 4bf5e9bCopy full SHA for 4bf5e9b
src/Commander-API-Commands.cpp
@@ -73,7 +73,7 @@ void commander_uptime_func( char *args, Stream *response ){
73
minute = second / 60;
74
second %= 60;
75
76
- sprintf( buff, "%d days, %d:%d:%d", day, hour, minute, second );
+ sprintf( buff, "%d days, %d:%d:%lu", day, hour, minute, second );
77
78
response -> print( buff );
79
0 commit comments