Commit 8722a77ec384aa0bc87b8f8f6c1c7ab6aeffae83

Shawn O. Pearce 2008-11-03T17:52:59

Correct indentation in git/odb.h Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/include/git/odb.h b/include/git/odb.h
index 55eee3f..7c6be4f 100644
--- a/include/git/odb.h
+++ b/include/git/odb.h
@@ -73,8 +73,8 @@ typedef enum {
 
 /** A small object read from the database. */
 typedef struct {
-	void *data;            /**< Raw, decompressed object data. */
-	size_t len  ;          /**< Total number of bytes in data. */
+	void *data;          /**< Raw, decompressed object data. */
+	size_t len;          /**< Total number of bytes in data. */
 	git_otype type;      /**< Type of this object. */
 } git_sobj;