Commit 2673a8da9c48b8c7735113dd12d164b4bf395c6a

Stefan Sperling 2018-09-19T20:01:20

whitespace

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/lib/object.c b/lib/object.c
index 0532771..300fa85 100644
--- a/lib/object.c
+++ b/lib/object.c
@@ -714,7 +714,7 @@ find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
 	struct got_tree_entry *te;
 
 	SIMPLEQ_FOREACH(te, &tree->entries.head, entry) {
-		if (strncmp(te->name, name, len) == 0 &&  te->name[len] == '\0')
+		if (strncmp(te->name, name, len) == 0 && te->name[len] == '\0')
 			return te;
 	}
 	return NULL;