diff options
author | Leo Yang <lyang@topologyinc.com> | 2015-08-17 15:18:47 -0400 |
---|---|---|
committer | Leo Yang <lyang@topologyinc.com> | 2015-08-17 15:18:47 -0400 |
commit | 26ea28f32bb93d262f39d04af72dc19a93593bc5 (patch) | |
tree | 8fd6f63e3828a21b2fe181c1f391dfb5c16040d4 /src/config.c | |
parent | 252f86e1bef45c0376a119602ff4943b3c476084 (diff) | |
download | libgit2-26ea28f32bb93d262f39d04af72dc19a93593bc5.tar.gz |
Fix build warning: implicit declaration of function ‘git_transaction_config_new’
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index 2df1fc80e..f0b2c3a61 100644 --- a/src/config.c +++ b/src/config.c @@ -13,6 +13,7 @@ #include "vector.h" #include "buf_text.h" #include "config_file.h" +#include "transaction.h" #if GIT_WIN32 # include <windows.h> #endif |