Matt Robenolt 12 years ago
parent
commit
dd2879c003
1 changed files with 1 additions and 1 deletions
  1. 1 1
      convert.go

+ 1 - 1
convert.go

@@ -50,7 +50,7 @@ func decode(b []byte, t uint16) driver.Value {
 		return b
 	case typeInt:
 		return int64(int32(binary.BigEndian.Uint32(b)))
-	case typeBigInt,typeCounter :
+	case typeBigInt, typeCounter :
 		return int64(binary.BigEndian.Uint64(b))
 	case typeFloat:
 		return float64(math.Float32frombits(binary.BigEndian.Uint32(b)))