Skip to content

Commit

Permalink
RF-35226 - Fix printf format string
Browse files Browse the repository at this point in the history
name is a string, not a number.
  • Loading branch information
ubergeek42 committed Jul 31, 2024
1 parent 42db471 commit 55eea57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion direct_connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func launchDirectConnect(c cliContext, rfApi *rainforest.Client) error {
apiHandler(tnetWireguard, ipv4Addr, uint16(80))
wg.Done()
}()
log.Printf("Rainforest Direct Connect running (name: %d, PID: %d)! Press Ctrl+C to exit\n", serverDetails.Name, os.Getpid())
log.Printf("Rainforest Direct Connect running (name: %s, PID: %d)! Press Ctrl+C to exit\n", serverDetails.Name, os.Getpid())

wg.Wait()

Expand Down

0 comments on commit 55eea57

Please sign in to comment.