From 3afe5f56916302784b428d027ad138359d832dbd Mon Sep 17 00:00:00 2001 From: Alex Deymo Date: Wed, 8 Nov 2017 12:26:44 +0100 Subject: Include bspatch.h from bsdiff/ The function ApplyBSDiffPatch() defined in bspatch.cpp is declared in applypatch.h, but it includes "bspatch.h" from the bsdiff/ project, which is at least confusing. There is no "bspatch.h" in this repo, so the include actually reffers to the one in bsdiff. This patch uses the "bsdiff/bspatch.h" form instead to avoid confusion. Bug: None Test: It builds. Change-Id: I6b6ffd6725b2b34ff644aed93683f69779103661 --- applypatch/bspatch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applypatch/bspatch.cpp b/applypatch/bspatch.cpp index c291464a8..db2ce0896 100644 --- a/applypatch/bspatch.cpp +++ b/applypatch/bspatch.cpp @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include "applypatch/applypatch.h" -- cgit v1.2.3