diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:58:14 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:58:14 +0000 |
commit | 423ba8f9bc23d93bfc244aca9b12563b1c9de90d (patch) | |
tree | c35d15efbecd3a9eb67a613df648a6bb614dca4b /share/examples/sunrpc/msg/rprintmsg.c | |
parent | a14d555c873398b14776ca4f2c33f9c69617afb9 (diff) | |
download | FreeBSD-src-423ba8f9bc23d93bfc244aca9b12563b1c9de90d.zip FreeBSD-src-423ba8f9bc23d93bfc244aca9b12563b1c9de90d.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'share/examples/sunrpc/msg/rprintmsg.c')
-rw-r--r-- | share/examples/sunrpc/msg/rprintmsg.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/examples/sunrpc/msg/rprintmsg.c b/share/examples/sunrpc/msg/rprintmsg.c index b9cb1e3..b9301de 100644 --- a/share/examples/sunrpc/msg/rprintmsg.c +++ b/share/examples/sunrpc/msg/rprintmsg.c @@ -40,14 +40,14 @@ main(argc, argv) clnt_pcreateerror(server); exit(1); } - + /* * Call the remote procedure "printmessage" on the server */ result = printmessage_1(&message, cl); if (result == NULL) { /* - * An error occurred while calling the server. + * An error occurred while calling the server. * Print error message and die. */ clnt_perror(cl, server); @@ -59,13 +59,13 @@ main(argc, argv) */ if (*result == 0) { /* - * Server was unable to print our message. + * Server was unable to print our message. * Print error message and die. */ - fprintf(stderr, "%s: sorry, %s couldn't print your message\n", - argv[0], server); + fprintf(stderr, "%s: sorry, %s couldn't print your message\n", + argv[0], server); exit(1); - } + } /* * The message got printed on the server's console |