Skip to content

Commit 7c49166

Browse files
dmitshurgopherbot
authored andcommitted
all: fix printf(var) mistakes detected by latest printf checker
There's some similarity here to the situation in CL 610676. The calls that now look like g.Printf("%s", something) would perhaps be better expressed like g.Print(something) or g.WriteString(something), but that's a bigger potential change to consider. This is a minimal fix. For golang/go#69267. Change-Id: I9cf23aef7bf2b9d9c7e9dcf3b48ecb23231016dd Reviewed-on: https://go-review.googlesource.com/c/mobile/+/610800 Reviewed-by: Tim King <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
1 parent 81131f6 commit 7c49166

File tree

6 files changed

+22
-23
lines changed

6 files changed

+22
-23
lines changed

bind/genclasses.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ func (g *ClassGen) genCMethodBody(cls *java.Class, f *java.Func, virtual bool) {
381381
g.Printf("Nonvirtual")
382382
}
383383
if f.Ret != nil {
384-
g.Printf(f.Ret.JNICallType())
384+
g.Printf("%s", f.Ret.JNICallType())
385385
} else {
386386
g.Printf("Void")
387387
}
@@ -430,7 +430,7 @@ func (g *ClassGen) genFuncDecl(local bool, fs *java.FuncSet) {
430430
if i == len(fs.Params)-1 && fs.Variadic {
431431
g.Printf("...")
432432
}
433-
g.Printf(g.goType(a, local))
433+
g.Printf("%s", g.goType(a, local))
434434
}
435435
g.Printf(")")
436436
if fs.Throws {
@@ -879,7 +879,7 @@ func (g *ClassGen) genInterface(cls *java.Class) {
879879
if !g.isFuncSetSupported(fs) {
880880
continue
881881
}
882-
g.Printf(fs.GoName)
882+
g.Printf("%s", fs.GoName)
883883
g.genFuncDecl(true, fs)
884884
g.Printf("\n")
885885
}
@@ -904,7 +904,7 @@ func flattenName(n string) string {
904904
return strings.Replace(strings.Replace(n, ".", "_", -1), "$", "_", -1)
905905
}
906906

907-
var (
907+
const (
908908
classesPkgHeader = gobindPreamble + `
909909
package Java
910910

bind/gengo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ func (g *goGen) genInterface(obj *types.TypeName) {
341341
g.Printf(") ")
342342

343343
if res.Len() == 1 {
344-
g.Printf(g.typeString(res.At(0).Type()))
344+
g.Printf("%s", g.typeString(res.At(0).Type()))
345345
} else if res.Len() == 2 {
346346
g.Printf("(%s, error)", g.typeString(res.At(0).Type()))
347347
}

bind/genjava.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ func (g *JavaGen) genConstructor(f *types.Func, n string, jcls bool) {
437437
if i > 0 {
438438
g.Printf(", ")
439439
}
440-
g.Printf(g.paramName(params, i))
440+
g.Printf("%s", g.paramName(params, i))
441441
}
442442
g.Printf(");\n")
443443
}
@@ -447,7 +447,7 @@ func (g *JavaGen) genConstructor(f *types.Func, n string, jcls bool) {
447447
if i > 0 {
448448
g.Printf(", ")
449449
}
450-
g.Printf(g.paramName(params, i))
450+
g.Printf("%s", g.paramName(params, i))
451451
}
452452
g.Printf(");\n")
453453
g.Printf("Seq.trackGoRef(refnum, this);\n")
@@ -757,21 +757,21 @@ func (g *JavaGen) genJNIFuncSignature(o *types.Func, sName string, jm *java.Func
757757
g.Printf("Java_%s_", g.jniPkgName())
758758
if sName != "" {
759759
if proxy {
760-
g.Printf(java.JNIMangle(g.className()))
760+
g.Printf("%s", java.JNIMangle(g.className()))
761761
// 0024 is the mangled form of $, for naming inner classes.
762762
g.Printf("_00024proxy%s", sName)
763763
} else {
764-
g.Printf(java.JNIMangle(g.javaTypeName(sName)))
764+
g.Printf("%s", java.JNIMangle(g.javaTypeName(sName)))
765765
}
766766
} else {
767-
g.Printf(java.JNIMangle(g.className()))
767+
g.Printf("%s", java.JNIMangle(g.className()))
768768
}
769769
g.Printf("_")
770770
if jm != nil {
771-
g.Printf(jm.JNIName)
771+
g.Printf("%s", jm.JNIName)
772772
} else {
773773
oName := javaNameReplacer(lowerFirst(o.Name()))
774-
g.Printf(java.JNIMangle(oName))
774+
g.Printf("%s", java.JNIMangle(oName))
775775
}
776776
g.Printf("(JNIEnv* env, ")
777777
if sName != "" {
@@ -839,9 +839,9 @@ func (g *JavaGen) genFuncSignature(o *types.Func, jm *java.Func, hasThis bool) {
839839

840840
g.Printf("%s ", ret)
841841
if jm != nil {
842-
g.Printf(jm.Name)
842+
g.Printf("%s", jm.Name)
843843
} else {
844-
g.Printf(javaNameReplacer(lowerFirst(o.Name())))
844+
g.Printf("%s", javaNameReplacer(lowerFirst(o.Name())))
845845
}
846846
g.Printf("(")
847847
g.genFuncArgs(o, jm, hasThis)

bind/genobjc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ func (g *ObjcGen) genStructH(obj *types.TypeName, t *types.Struct) {
10601060
if oinf != nil {
10611061
for _, sup := range oinf.supers {
10621062
if !sup.Protocol {
1063-
g.Printf(sup.Name)
1063+
g.Printf("%s", sup.Name)
10641064
} else {
10651065
prots = append(prots, sup.Name)
10661066
}

bind/genobjcw.go

+4-6
Original file line numberDiff line numberDiff line change
@@ -286,14 +286,13 @@ func (g *ObjcWrapper) genCFuncDecl(prefix, name string, f *objc.Func) {
286286
case ret != nil && returnsErr:
287287
g.Printf("ret_%s", strings.Replace(g.cType(ret), " ", "_", -1))
288288
case ret != nil:
289-
g.Printf(g.cType(ret))
289+
g.Printf("%s", g.cType(ret))
290290
case returnsErr:
291291
g.Printf("int")
292292
default:
293293
g.Printf("void")
294294
}
295-
g.Printf(" ")
296-
g.Printf(prefix)
295+
g.Printf(" %s", prefix)
297296
if f.Static {
298297
g.Printf("_s")
299298
}
@@ -397,8 +396,7 @@ func (g *ObjcWrapper) genFuncBody(n *objc.Named, f *objc.Func, prefix string) {
397396
if ret != nil || errParam != nil {
398397
g.Printf("res := ")
399398
}
400-
g.Printf("C.")
401-
g.Printf(prefix)
399+
g.Printf("C.%s", prefix)
402400
if f.Static {
403401
g.Printf("_s")
404402
}
@@ -575,7 +573,7 @@ func (g *ObjcWrapper) genInterface(n *objc.Named) {
575573
if !g.isFuncSupported(f) {
576574
continue
577575
}
578-
g.Printf(f.GoName)
576+
g.Printf("%s", f.GoName)
579577
g.genFuncDecl(true, f)
580578
g.Printf("\n")
581579
}

internal/binres/binres_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"bytes"
99
"encoding"
1010
"encoding/xml"
11+
"errors"
1112
"fmt"
1213
"io/ioutil"
1314
"log"
@@ -103,7 +104,7 @@ func compareBytes(a, b []byte) error {
103104
fmt.Fprint(buf, "... output truncated.\n")
104105
}
105106
}
106-
return fmt.Errorf(buf.String())
107+
return errors.New(buf.String())
107108
}
108109

109110
func TestBootstrap(t *testing.T) {
@@ -329,7 +330,7 @@ func compareElements(have, want *XML) error {
329330
}
330331
}
331332
if buf.Len() > 0 {
332-
return fmt.Errorf(buf.String())
333+
return errors.New(buf.String())
333334
}
334335
return nil
335336
}

0 commit comments

Comments
 (0)