Fix a writex transcription error.

Change-Id: I71b11127d41ebac6caf68926089c5a3b99d8c21e
This commit is contained in:
Dan Albert 2015-03-09 13:22:02 -07:00
parent 88492ec4e1
commit f3519a8747

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)