From bf09c61d9502057d8bc25317c20537557ad9501c Mon Sep 17 00:00:00 2001 From: Daniel Zheng Date: Tue, 11 Apr 2023 09:33:47 -0700 Subject: [PATCH] Pointed FlashingPlan to Interface Using interface for testing purposes Bug: 194686221 Test: tested compilation Change-Id: Ia9465c1f5673c249cdbc08a1a2432e8a603bd9cc --- fastboot/fastboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastboot/fastboot.h b/fastboot/fastboot.h index 2d79e42a0..009b3a11e 100644 --- a/fastboot/fastboot.h +++ b/fastboot/fastboot.h @@ -99,7 +99,7 @@ struct FlashingPlan { std::string current_slot; std::string secondary_slot; - fastboot::FastBootDriver* fb; + fastboot::IFastBootDriver* fb; }; class FlashAllTool {