Fix a writex transcription error.
Change-Id: I71b11127d41ebac6caf68926089c5a3b99d8c21e
This commit is contained in:
parent
88492ec4e1
commit
f3519a8747
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue