Forgot an argument to a print statement.

This commit is contained in:
Chris Sexton 2012-08-25 00:51:16 -04:00
parent 3e7f8d4248
commit d50cf23522
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func Readconfig(version, cfile string) *Config {
} }
c.Version = version c.Version = version
fmt.Printf("godeepintir version %s running.\n") fmt.Printf("godeepintir version %s running.\n", c.Version)
return &c return &c
} }