mirror of https://github.com/ceph/go-ceph
implements: naming conventions: Xml -> XML
Fix up variable names that don't meet Go standards. Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
2456bf70a1
commit
c1e544b8c3
|
@ -9,8 +9,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// CastXmlBin is the name/location of the castxml binary.
|
// CastXMLBin is the name/location of the castxml binary.
|
||||||
CastXmlBin = "castxml"
|
CastXMLBin = "castxml"
|
||||||
|
|
||||||
// Add a stub C function that goes nowhere and does nothing. Just
|
// Add a stub C function that goes nowhere and does nothing. Just
|
||||||
// to give castxml something to chew on. It may not be strictly
|
// to give castxml something to chew on. It may not be strictly
|
||||||
|
@ -130,7 +130,7 @@ func stubCFunctions(libname string) (CFunctions, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd := []string{
|
cmd := []string{
|
||||||
CastXmlBin,
|
CastXMLBin,
|
||||||
"--castxml-output=1",
|
"--castxml-output=1",
|
||||||
"-o", "-",
|
"-o", "-",
|
||||||
tfile.Name(),
|
tfile.Name(),
|
||||||
|
|
Loading…
Reference in New Issue