Skip to content

Commit 0063b9b

Browse files
committed
runtime: remove useless empty string literal
Assumingly this appears to have been a bug in c2go, as this appeared in https://go.dev/cl/172260043. Change-Id: I8477ec226ffb31268b9c479af13b0fcf401dbeec Reviewed-on: https://go-review.googlesource.com/c/go/+/418276 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Run-TryBot: Michael Pratt <[email protected]>
1 parent e761556 commit 0063b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/proc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5459,7 +5459,7 @@ func schedtrace(detailed bool) {
54595459
if lockedg != nil {
54605460
id3 = lockedg.goid
54615461
}
5462-
print(" M", mp.id, ": p=", id1, " curg=", id2, " mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, ""+" locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=", id3, "\n")
5462+
print(" M", mp.id, ": p=", id1, " curg=", id2, " mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=", id3, "\n")
54635463
}
54645464

54655465
forEachG(func(gp *g) {

0 commit comments

Comments
 (0)