aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/emacsclient.c
diff options
context:
space:
mode:
authorDavid J. MacKenzie1994-10-12 20:21:51 +0000
committerDavid J. MacKenzie1994-10-12 20:21:51 +0000
commit340ff9deaea2a7258d3ee1eca65487b4cd8dd305 (patch)
tree48728b1b42696e296b41072130301fc3ea627440 /lib-src/emacsclient.c
parente2f9d9afabe51c8be7e6f4327197670b941789f2 (diff)
downloademacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.tar.gz
emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.zip
Eliminate some -Wall warnings.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r--lib-src/emacsclient.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 76d0b4e54d9..303ad654030 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -55,6 +55,7 @@ main (argc, argv)
55extern char *strerror (); 55extern char *strerror ();
56extern int errno; 56extern int errno;
57 57
58int
58main (argc, argv) 59main (argc, argv)
59 int argc; 60 int argc;
60 char **argv; 61 char **argv;
@@ -167,7 +168,7 @@ main (argc, argv)
167 while (str = fgets (string, BUFSIZ, out)) 168 while (str = fgets (string, BUFSIZ, out))
168 printf ("%s", str); 169 printf ("%s", str);
169 170
170 exit (0); 171 return 0;
171} 172}
172 173
173#else /* This is the SYSV IPC section */ 174#else /* This is the SYSV IPC section */