diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2015-06-17 06:42:20 -0700 |
---|---|---|
committer | Edward Thomson <ethomson@github.com> | 2016-05-26 13:01:03 -0500 |
commit | 6a2d2f8aa14462396cbc7d3e408ed28430e212e2 (patch) | |
tree | e810691ea5820bf71efdfcfecc36add23e3dc8e3 /src/odb_loose.c | |
parent | 0004386f29d1165d5dbd54b26170560a7a98e125 (diff) | |
download | libgit2-6a2d2f8aa14462396cbc7d3e408ed28430e212e2.tar.gz |
delta: move delta application to delta.c
Move the delta application functions into `delta.c`, next to the
similar delta creation functions. Make the `git__delta_apply`
functions adhere to other naming and parameter style within the
library.
Diffstat (limited to 'src/odb_loose.c')
-rw-r--r-- | src/odb_loose.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb_loose.c b/src/odb_loose.c index 3c33160d0..228d4c334 100644 --- a/src/odb_loose.c +++ b/src/odb_loose.c @@ -12,7 +12,7 @@ #include "fileops.h" #include "hash.h" #include "odb.h" -#include "delta-apply.h" +#include "delta.h" #include "filebuf.h" #include "git2/odb_backend.h" |