From 0cc2c6532fa1bd74a03fbf0f8a23f9ba2d9c8890 Mon Sep 17 00:00:00 2001 From: elafontaine Date: Sun, 26 Nov 2023 20:07:40 -0500 Subject: [PATCH] Avoid bug with go 1.20 missing EOF new line --- pdu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdu.go b/pdu.go index 2fda02d..6a28b9d 100644 --- a/pdu.go +++ b/pdu.go @@ -50,4 +50,4 @@ func (p *PDU) Read(b []byte) (n int, err error) { } n = copy(b, pdu) return -} \ No newline at end of file +}