From 2f17ced31757fd76fd188b6fa3412ff2e8f42752 Mon Sep 17 00:00:00 2001 From: Jeremy Gill Date: Wed, 14 Apr 2021 17:04:02 -0400 Subject: [PATCH] Journald: gofmt to satisfy ci tests. --- journal/journal_unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/journal/journal_unix.go b/journal/journal_unix.go index 4bcb7150..faf97587 100644 --- a/journal/journal_unix.go +++ b/journal/journal_unix.go @@ -67,11 +67,11 @@ func Enabled() bool { conn, err := net.Dial("unixgram", journalSocket) - if err != nil { + if err != nil { return false } - defer conn.Close() + defer conn.Close() return true }