blob: ab69d7320c20bc25ec68d8348dabf609bba2086a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- ESPHamClock.ino.orig 2022-07-02 11:59:16 UTC
+++ ESPHamClock.ino
@@ -1,6 +1,9 @@
/* HamClock
*/
+#if defined(__FreeBSD__)
+#include <execinfo.h>
+#endif
// glue
#include "HamClock.h"
@@ -1605,7 +1608,7 @@ static void drawUptime(bool force)
// draw two most significant units if change
if (upsecs < 60) {
prepUptime();
- tft.print(upsecs); tft.print(F("s "));
+ tft.print((long)upsecs); tft.print(F("s "));
} else if (upsecs < 3600) {
prepUptime();
tft.print(mins); tft.print(F("m "));
|