summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 7e615cc..5121a83 100644
--- a/main.go
+++ b/main.go
@@ -308,7 +308,7 @@ func main() {
desc = fmt.Sprintf("%d", w.weathertype)
}
fmt.Printf("%18s, Temp: %4.1f°C, ", desc, w.temperatureDegC)
- fmt.Printf("Rain: %2d%%, Wind: %4.1fmph\n", w.precipitationPerc, w.windspeedMph)
+ fmt.Printf("Rain: %2d%%, Wind: %4.1fmph, Gust: %4.1fmph\n", w.precipitationPerc, w.windspeedMph, w.windgustMph)
if *verbose {
fmt.Printf("%+v\n\n", w)
}