summaryrefslogtreecommitdiff
path: root/src/diff_xdiff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/diff_xdiff.h')
-rw-r--r--src/diff_xdiff.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/diff_xdiff.h b/src/diff_xdiff.h
index e1c58a229..88375986b 100644
--- a/src/diff_xdiff.h
+++ b/src/diff_xdiff.h
@@ -9,19 +9,19 @@
#include "diff.h"
#include "xdiff/xdiff.h"
-#include "patch_diff.h"
+#include "patch_generate.h"
/* xdiff cannot cope with large files. these files should not be passed to
* xdiff. callers should treat these large files as binary.
*/
#define GIT_XDIFF_MAX_SIZE (1024LL * 1024 * 1023)
-/* A git_xdiff_output is a git_patch_diff_output with extra fields necessary
- * to use libxdiff. Calling git_xdiff_init() will set the diff_cb field
- * of the output to use xdiff to generate the diffs.
+/* A git_xdiff_output is a git_patch_generate_output with extra fields
+ * necessary to use libxdiff. Calling git_xdiff_init() will set the diff_cb
+ * field of the output to use xdiff to generate the diffs.
*/
typedef struct {
- git_patch_diff_output output;
+ git_patch_generated_output output;
xdemitconf_t config;
xpparam_t params;