Skip to content
Snippets Groups Projects
Commit eea8be86 authored by Peter Tyser's avatar Peter Tyser Committed by Wolfgang Denk
Browse files

ncb: Check return value of write()


This prevents the compilation warning:

ncb.c: In function 'main':
ncb.c:32: warning: ignoring return value of ‘write’, declared with
attribute warn_unused_result

Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
parent dbe29e36
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <sys/socket.h> #include <sys/socket.h>
...@@ -29,7 +30,8 @@ int main (int argc, char *argv[]) ...@@ -29,7 +30,8 @@ int main (int argc, char *argv[])
len = recvfrom (s, buf, sizeof buf, 0, (struct sockaddr *) &addr, &addr_len); len = recvfrom (s, buf, sizeof buf, 0, (struct sockaddr *) &addr, &addr_len);
if (len < 0) if (len < 0)
break; break;
write (1, buf, len); if (write (1, buf, len) != len)
fprintf(stderr, "WARNING: serial characters dropped\n");
} }
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment