diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-04 15:20:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-04 15:20:19 +0000 |
commit | 37de9e5d47ce2089c241cd65dc7dfe4b0248c2c4 (patch) | |
tree | 0efdb5447f4398eea4e5c0b19453e79d0326112b /lib-src/emacsserver.c | |
parent | 0d1841a634a1a46e934cd5a756aefb36f41d2532 (diff) | |
download | emacs-37de9e5d47ce2089c241cd65dc7dfe4b0248c2c4.tar.gz |
(main): Declare `fromunix' as size_t.
Diffstat (limited to 'lib-src/emacsserver.c')
-rw-r--r-- | lib-src/emacsserver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/emacsserver.c b/lib-src/emacsserver.c index 2cd617c5c9b..d82fef55766 100644 --- a/lib-src/emacsserver.c +++ b/lib-src/emacsserver.c @@ -206,7 +206,8 @@ main (argc, argv) { char system_name[32]; int s, infd, fromlen; - struct sockaddr_un server, fromunix; + struct sockaddr_un server; + size_t fromunix; char *homedir; char *str, string[BUFSIZ], code[BUFSIZ]; FILE *infile; |