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

Commit f0a4855c authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am c28e3c31: am a4fb975e: Merge "Fix debuggerd "format \'%p\'" build breakage."

* commit 'c28e3c31':
  Fix debuggerd "format '%p'" build breakage.
parents e8b65473 c28e3c31
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -163,9 +163,7 @@ static int read_request(int fd, debugger_request_t* out_request) {
    ALOGE("read failure? %s (pid=%d uid=%d)\n", strerror(errno), cr.pid, cr.uid);
    return -1;
  }
  if (status == sizeof(debugger_msg_t)) {
    ALOGV("crash request of size %d abort_msg_address=%p\n", status, msg.abort_msg_address);
  } else {
  if (status != sizeof(debugger_msg_t)) {
    ALOGE("invalid crash request of size %d (from pid=%d uid=%d)\n", status, cr.pid, cr.uid);
    return -1;
  }