diff options
Diffstat (limited to 'exports/disco.go')
| -rw-r--r-- | exports/disco.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exports/disco.go b/exports/disco.go index b04385a..51de2f5 100644 --- a/exports/disco.go +++ b/exports/disco.go @@ -74,7 +74,7 @@ func getCPtrDiscoOrganizations( for _, organization := range organizations.List { cOrganization := getCPtrDiscoOrganization(state, &organization) cOrganizations[index] = cOrganization - index += 1 + index++ } return totalOrganizations, organizationsPtr } @@ -117,7 +117,7 @@ func getCPtrDiscoServers( for _, server := range servers.List { cServer := getCPtrDiscoServer(state, &server) cServers[index] = cServer - index += 1 + index++ } return totalServers, serversPtr } |
