update to latest Zig (zig fmt)

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-06-25 00:01:55 -07:00
parent 419d82d5fd
commit 29964c99bb
39 changed files with 156 additions and 156 deletions

View file

@ -185,7 +185,7 @@ fn sendData(
"Content-Type: {s}\r\n" ++
"\r\n{s}",
.{
@enumToInt(status),
@intFromEnum(status),
status.phrase() orelse "N/A",
switch (connection) {
.close => "close",
@ -206,7 +206,7 @@ fn sendData(
"Content-Type: {s}\r\n" ++
"\r\n",
.{
@enumToInt(status),
@intFromEnum(status),
status.phrase() orelse "N/A",
switch (connection) {
.close => "close",