git_config: reorder fields according to use

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
This commit is contained in:
Carlos Martín Nieto 2011-03-30 15:16:25 +02:00
parent dadc0158fb
commit e21881d1db

View File

@ -4,7 +4,8 @@
#include "git2/config.h" #include "git2/config.h"
struct git_config { struct git_config {
char *file_path; git_cvar *vars;
git_cvar *vars_tail;
struct { struct {
gitfo_buf buffer; gitfo_buf buffer;
@ -13,8 +14,7 @@ struct git_config {
int eof; int eof;
} reader; } reader;
git_cvar *vars; char *file_path;
git_cvar *vars_tail;
}; };
struct git_cvar { struct git_cvar {