Commit e546352ca5c53b183a9f3e39ce7c28db035c8cf4

Josh Rickmar 2022-02-16T17:03:02

remove stray tab that snuck in

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index a480d71..d845182 100644
--- a/got/got.c
+++ b/got/got.c
@@ -11471,7 +11471,7 @@ format_gmtoff(char *buf, size_t sz, time_t gmtoff)
 {
 	long long h, m;
 	char sign = '+';
-	
+
 	if (gmtoff < 0) {
 		sign = '-';
 		gmtoff = -gmtoff;