aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2022-07-11 19:10:00 +0200
committerGopher Robot <gobot@golang.org>2022-07-11 21:46:19 +0000
commit126c22a09824a7b52c019ed9a1d198b4e7781676 (patch)
tree4bddace2ef571a1587859196e67793a276b01903
parent123a6328b7bd31ed6725d9412913fed6a4436aad (diff)
downloadgo-126c22a09824a7b52c019ed9a1d198b4e7781676.tar.gz
go-126c22a09824a7b52c019ed9a1d198b4e7781676.zip
syscall: gofmt after CL 412114
Change-Id: Ie51545eaebd22a31379bf8814a2c62b91d1d105b Reviewed-on: https://go-review.googlesource.com/c/go/+/416934 Reviewed-by: Michael Knyszek <mknyszek@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
-rw-r--r--src/syscall/exec_linux.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syscall/exec_linux.go b/src/syscall/exec_linux.go
index ede8247da9..554aad412d 100644
--- a/src/syscall/exec_linux.go
+++ b/src/syscall/exec_linux.go
@@ -43,8 +43,8 @@ type SysProcAttr struct {
// the descriptor of the controlling TTY.
// Unlike Setctty, in this case Ctty must be a descriptor
// number in the parent process.
- Foreground bool
- Pgid int // Child's process group ID if Setpgid.
+ Foreground bool
+ Pgid int // Child's process group ID if Setpgid.
// Pdeathsig, if non-zero, is a signal that the kernel will send to
// the child process when the creating thread dies. Note that the signal
// is sent on thread termination, which may happen before process termination.