summaryrefslogtreecommitdiff
path: root/cmd/dolmetschctld
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/dolmetschctld')
-rw-r--r--cmd/dolmetschctld/dolmetschctld.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/dolmetschctld/dolmetschctld.go b/cmd/dolmetschctld/dolmetschctld.go
index 346b6fc..be9abd0 100644
--- a/cmd/dolmetschctld/dolmetschctld.go
+++ b/cmd/dolmetschctld/dolmetschctld.go
@@ -26,7 +26,7 @@ import (
"log"
"os"
- "spreadspace.org/dolmetschctl/mixer"
+ "spreadspace.org/dolmetschctl/pkg/mixer"
)
func main() {
@@ -37,9 +37,9 @@ func main() {
log.Println("Error opening the mixer: %v", err)
os.Exit(1)
}
- defer c.Shutdown()
+ defer m.Shutdown()
- if err = c.Init(); err != nil {
+ if err = m.Init(); err != nil {
log.Println("Error initializeing the mixer: %v", err)
os.Exit(1)
}