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

Commit 9b1fd969 authored by Dan Albert's avatar Dan Albert Committed by Gerrit Code Review
Browse files

Merge "Fix a writex transcription error."

parents 332c2881 f3519a87
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)