aboutsummaryrefslogtreecommitdiffstats
path: root/src/control.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/control.zig')
-rw-r--r--src/control.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control.zig b/src/control.zig
index e490c7c..43c232e 100644
--- a/src/control.zig
+++ b/src/control.zig
@@ -66,7 +66,7 @@ pub const ControlServer = struct {
switch (config) {
.Manual => |conf| {
var port = [_]u8{0} ** 6;
- _ = std.fmt.formatIntBuf(port[0..], conf.port, 10, false, std.fmt.FormatOptions{});
+ _ = std.fmt.formatIntBuf(port[0..], conf.port, 10, .lower, std.fmt.FormatOptions{});
const proto: c_int = switch (conf.protocol) {
.udp => c.LO_UDP,
.tcp => c.LO_TCP,