summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.go b/main.go
index 084b8ec..9c45241 100644
--- a/main.go
+++ b/main.go
@@ -30,7 +30,8 @@ func main() {
}
vertices,vertex_normals = stl.toVertices()
- // lock this program to one OS thread (details: https://golang.org/pkg/runtime/#LockOSThread)
+ // lock this program to one OS thread
+ // (details: https://golang.org/pkg/runtime/#LockOSThread)
log.Println("Locking OS thread")
runtime.LockOSThread()
@@ -50,7 +51,8 @@ func main() {
}
func (args *cliArgs) read() {
- flag.BoolVar(&args.debugOutput, "debug", false, "enable to print log output")
+ flag.BoolVar(&args.debugOutput, "debug", false,
+ "enable to print log output")
flag.Parse()
args.filePath = flag.Arg(0)
}