From ea5b9d5bd32d1027338762372652dc6f9819a788 Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Fri, 18 Dec 2015 09:53:25 -0800 Subject: debug/elf: rename Chdr64.Reserved to _ This future-proofs the Chdr64 structure against later versions of ELF defining this field and declutters the documentation without changing the layout of the struct. This structure does not exist in the current release, so this change is safe. Change-Id: I239aad7243ddaf063a1f8cd521d8a50b30413281 Reviewed-on: https://go-review.googlesource.com/18028 Reviewed-by: Brad Fitzpatrick Reviewed-by: Ian Lance Taylor --- src/debug/elf/elf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/debug/elf') diff --git a/src/debug/elf/elf.go b/src/debug/elf/elf.go index 0c79b7a02f..f53ba0079a 100644 --- a/src/debug/elf/elf.go +++ b/src/debug/elf/elf.go @@ -2006,7 +2006,7 @@ type Dyn64 struct { // ELF64 Compression header. type Chdr64 struct { Type uint32 - Reserved uint32 + _ uint32 /* Reserved. */ Size uint64 Addralign uint64 } -- cgit v1.3