i bring great shame to my family (#876)

This commit is contained in:
Reed Allman
2018-03-21 13:13:04 -07:00
committed by GitHub
parent fd83bbeaa6
commit 412362b682

View File

@@ -63,13 +63,13 @@ func New() Id {
id[8] = byte(machineID<<4) | byte((count<<4)>>60) id[8] = byte(machineID<<4) | byte((count<<4)>>60)
id[8] = byte(count >> 48) id[9] = byte(count >> 48)
id[8] = byte(count >> 40) id[10] = byte(count >> 40)
id[8] = byte(count >> 32) id[11] = byte(count >> 32)
id[8] = byte(count >> 24) id[12] = byte(count >> 24)
id[8] = byte(count >> 16) id[13] = byte(count >> 16)
id[8] = byte(count >> 8) id[14] = byte(count >> 8)
id[8] = byte(count) id[15] = byte(count)
return id return id
} }