Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 34c158d5 authored by Penguin766's avatar Penguin766 Committed by Michael Bestas
Browse files

recovery_ui: Remove unused variable

Defined but not used anywhere further, breaks BP4A build.

Test: m recoveryimage

Test: Boot recovery and check functionality
Change-Id: Ibee84986e9962d2c5d2a7d460b70aa7d2b21a0f7
parent c5d5f2fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ void RecoveryUI::OnTouchDeviceDetected(int fd) {

  char* p = buf;
  char* endp;
  for (size_t n = 0; p < buf + len && *p == '0'; ++n) {
  for (; p < buf + len && *p == '0';) {
    int val[6];
    int f;
    for (f = 0; *p && f < 6; ++f) {