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

Commit ea998e0e authored by Dan Albert's avatar Dan Albert Committed by Android Git Automerger
Browse files

am 9b1fd969: Merge "Fix a writex transcription error."

* commit '9b1fd969':
  Fix a writex transcription error.
parents 8b09c276 9b1fd969
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ done:
    msg.dent.size = 0;
    msg.dent.time = 0;
    msg.dent.namelen = 0;
    return !WriteFdExactly(s, &msg.dent, sizeof(msg.dent)) ? 0 : -1;
    return WriteFdExactly(s, &msg.dent, sizeof(msg.dent)) ? 0 : -1;
}

static int fail_message(int s, const char *reason)