Browse Source

pkg: clean up code format

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 7 years ago
parent
commit
0b37ae05b1
2 changed files with 5 additions and 5 deletions
  1. 4 4
      pkg/adt/interval_tree.go
  2. 1 1
      pkg/cpuutil/endian.go

+ 4 - 4
pkg/adt/interval_tree.go

@@ -81,12 +81,12 @@ func (x *intervalNode) color() rbcolor {
 	return x.c
 	return x.c
 }
 }
 
 
-func (n *intervalNode) height() int {
-	if n == nil {
+func (x *intervalNode) height() int {
+	if x == nil {
 		return 0
 		return 0
 	}
 	}
-	ld := n.left.height()
-	rd := n.right.height()
+	ld := x.left.height()
+	rd := x.right.height()
 	if ld < rd {
 	if ld < rd {
 		return rd + 1
 		return rd + 1
 	}
 	}

+ 1 - 1
pkg/cpuutil/endian.go

@@ -27,7 +27,7 @@ var byteOrder binary.ByteOrder
 func ByteOrder() binary.ByteOrder { return byteOrder }
 func ByteOrder() binary.ByteOrder { return byteOrder }
 
 
 func init() {
 func init() {
-	var i int = 0x1
+	i := int(0x1)
 	if v := (*[intWidth]byte)(unsafe.Pointer(&i)); v[0] == 0 {
 	if v := (*[intWidth]byte)(unsafe.Pointer(&i)); v[0] == 0 {
 		byteOrder = binary.BigEndian
 		byteOrder = binary.BigEndian
 	} else {
 	} else {