From dff188a6157c10ab6745b1a389c925794d6ca1ba Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 3 Feb 2020 00:30:31 -0500 Subject: fix --- rrdformat/sniff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rrdformat/sniff.go') diff --git a/rrdformat/sniff.go b/rrdformat/sniff.go index a6a8c6d..099655f 100644 --- a/rrdformat/sniff.go +++ b/rrdformat/sniff.go @@ -136,7 +136,7 @@ func SniffArchitecture(data []byte) (rrdbinary.Architecture, error) { // For now, just assume it's sizeof(long)/2, which is true on // i686, x86_64, and arm. (It is not true on alpha or ia64.) arch.ShortWidth = arch.LongWidth / 2 - arch.Shortalign = arch.LongAlign / 2 + arch.ShortAlign = arch.LongAlign / 2 return arch, nil } -- cgit v1.2.3