From c1e544b8c321d4ab06f744a928a59e69790350e2 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 16 Aug 2021 10:59:15 -0400 Subject: [PATCH] implements: naming conventions: Xml -> XML Fix up variable names that don't meet Go standards. Signed-off-by: John Mulligan --- contrib/implements/internal/implements/cast.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/implements/internal/implements/cast.go b/contrib/implements/internal/implements/cast.go index c9393dc..e32f8de 100644 --- a/contrib/implements/internal/implements/cast.go +++ b/contrib/implements/internal/implements/cast.go @@ -9,8 +9,8 @@ import ( ) var ( - // CastXmlBin is the name/location of the castxml binary. - CastXmlBin = "castxml" + // CastXMLBin is the name/location of the castxml binary. + CastXMLBin = "castxml" // Add a stub C function that goes nowhere and does nothing. Just // to give castxml something to chew on. It may not be strictly @@ -130,7 +130,7 @@ func stubCFunctions(libname string) (CFunctions, error) { } cmd := []string{ - CastXmlBin, + CastXMLBin, "--castxml-output=1", "-o", "-", tfile.Name(),