]> git.proxmox.com Git - libgit2.git/commitdiff
Whitespace wibbles.
authorAlan Rogers <alan@github.com>
Wed, 4 Jun 2014 22:41:48 +0000 (15:41 -0700)
committerAlan Rogers <alan@github.com>
Wed, 4 Jun 2014 22:41:48 +0000 (15:41 -0700)
include/git2/status.h
include/git2/types.h

index 76ffab66357828bbe2ea15980ca1256b6bfdabd6..3c86e5d7b0033983e61b272081ac81dd804f5dae 100644 (file)
@@ -156,6 +156,7 @@ typedef enum {
        (GIT_STATUS_OPT_INCLUDE_IGNORED | \
        GIT_STATUS_OPT_INCLUDE_UNTRACKED | \
        GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS)
+
 /**
  * Options to control how `git_status_foreach_ext()` will issue callbacks.
  *
index 3019c46772486e5a4860fc32962a384a6089b401..76175b6bd63e8a83bde8581fc3c796c78f0f9186 100644 (file)
@@ -198,12 +198,12 @@ typedef enum {
 
 /** Valid modes for index and tree entries. */
 typedef enum {
-       GIT_FILEMODE_UNREADABLE                         = 0000000,
-       GIT_FILEMODE_TREE                                       = 0040000,
-       GIT_FILEMODE_BLOB                                       = 0100644,
-       GIT_FILEMODE_BLOB_EXECUTABLE            = 0100755,
-       GIT_FILEMODE_LINK                                       = 0120000,
-       GIT_FILEMODE_COMMIT                                     = 0160000,
+       GIT_FILEMODE_UNREADABLE          = 0000000,
+       GIT_FILEMODE_TREE                = 0040000,
+       GIT_FILEMODE_BLOB                = 0100644,
+       GIT_FILEMODE_BLOB_EXECUTABLE     = 0100755,
+       GIT_FILEMODE_LINK                = 0120000,
+       GIT_FILEMODE_COMMIT              = 0160000,
 } git_filemode_t;
 
 typedef struct git_refspec git_refspec;