aboutsummaryrefslogtreecommitdiff
path: root/hsm-status
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2025-01-23 14:22:33 -0800
committerPaul Oliver <contact@pauloliver.dev>2025-01-24 16:36:25 -0800
commit367aaf43ef9c52f454a721b1924808aeb2d7944f (patch)
treece166cf19d119510ba36f4b3c1fdcb9f2214c299 /hsm-status
parent85d856e87ad7875e5dfab19e22e71c4118f4cbad (diff)
Replaces Int with Word type for numerical values
Diffstat (limited to 'hsm-status')
-rw-r--r--hsm-status/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hsm-status/Main.hs b/hsm-status/Main.hs
index ec883ff..634d1d1 100644
--- a/hsm-status/Main.hs
+++ b/hsm-status/Main.hs
@@ -26,7 +26,7 @@ data Env = Env
{ name :: Text
, gpioOk :: GPIO
, gpioError :: GPIO
- , period :: Int
+ , period :: Word
, subEps :: [Text]
, topics :: [Text]
}