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

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

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

* commit 'ea998e0e':
  Fix a writex transcription error.
parents 756cc397 ea998e0e
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)