diff options
| author | David J. MacKenzie | 1994-10-12 20:21:51 +0000 |
|---|---|---|
| committer | David J. MacKenzie | 1994-10-12 20:21:51 +0000 |
| commit | 340ff9deaea2a7258d3ee1eca65487b4cd8dd305 (patch) | |
| tree | 48728b1b42696e296b41072130301fc3ea627440 /lib-src/emacsclient.c | |
| parent | e2f9d9afabe51c8be7e6f4327197670b941789f2 (diff) | |
| download | emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.tar.gz emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.zip | |
Eliminate some -Wall warnings.
Diffstat (limited to 'lib-src/emacsclient.c')
| -rw-r--r-- | lib-src/emacsclient.c | 3 |
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) | |||
| 55 | extern char *strerror (); | 55 | extern char *strerror (); |
| 56 | extern int errno; | 56 | extern int errno; |
| 57 | 57 | ||
| 58 | int | ||
| 58 | main (argc, argv) | 59 | main (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 */ |