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

* commit '9b1fd969a7b7f1c6f1ed19719f21d57001d3c461':
  Fix a writex transcription error.
This commit is contained in:
Dan Albert 2015-03-09 20:35:54 +00:00 committed by Android Git Automerger
commit ea998e0ef9
1 changed files with 1 additions and 1 deletions

View File

@ -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)