Skip to content

Commit

Permalink
Merge pull request #341 from goodspeed1986/master
Browse files Browse the repository at this point in the history
Fix running on 32bit processors
  • Loading branch information
kung-foo authored Apr 16, 2020
2 parents 36b67bc + 42cbd4a commit ea8d823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monitor/subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ type itemIDs struct {
// Subscription is an instance of an active subscription.
// Nodes can be added and removed concurrently.
type Subscription struct {
delivered uint64
dropped uint64
monitor *NodeMonitor
sub *opcua.Subscription
internalNotifyCh chan *opcua.PublishNotificationData
delivered uint64
dropped uint64
closed chan struct{}
mu sync.RWMutex
handles map[uint32]*ua.NodeID
Expand Down

0 comments on commit ea8d823

Please sign in to comment.