From 7b704fb77d6430cde07703f7cc8574484630d85c Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Wed, 17 Dec 2014 12:58:12 +0100 Subject: [PATCH] builtin/providers/heroku: vet fix Fixes the following vet reports: builtin/providers/heroku/resource_heroku_app.go:192: arg vs for printf verb %s of wrong type: bool builtin/providers/heroku/resource_heroku_app.go:198: arg vs for printf verb %s of wrong type: bool --- builtin/providers/heroku/resource_heroku_app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/heroku/resource_heroku_app.go b/builtin/providers/heroku/resource_heroku_app.go index 47d44042f..af27c7b26 100644 --- a/builtin/providers/heroku/resource_heroku_app.go +++ b/builtin/providers/heroku/resource_heroku_app.go @@ -189,13 +189,13 @@ func resourceHerokuOrgAppCreate(d *schema.ResourceData, meta interface{}) error if v := d.Get("organization.0.personal"); v != nil { vs := v.(bool) - log.Printf("[DEBUG] Organization Personal: %s", vs) + log.Printf("[DEBUG] Organization Personal: %t", vs) opts.Personal = &vs } if v := d.Get("organization.0.locked"); v != nil { vs := v.(bool) - log.Printf("[DEBUG] Organization locked: %s", vs) + log.Printf("[DEBUG] Organization locked: %t", vs) opts.Locked = &vs }