mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-03 11:53:41 +02:00
main.go: minor style fixes.
This commit is contained in:
parent
a9c8bd3a04
commit
8ebcf70ba1
1 changed files with 4 additions and 2 deletions
6
main.go
6
main.go
|
|
@ -36,8 +36,10 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Reader states
|
// Reader states
|
||||||
const RS_CONNECT = 1
|
const (
|
||||||
const RS_READ = 2
|
RS_CONNECT = 1
|
||||||
|
RS_READ = 2
|
||||||
|
)
|
||||||
|
|
||||||
func readerLoop() {
|
func readerLoop() {
|
||||||
state := RS_CONNECT
|
state := RS_CONNECT
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue