diff options
author | hasso <hasso> | 2004-10-05 21:01:23 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-05 21:01:23 +0000 |
commit | ff2e9e3c3816b7b828bbb023639db52364d729ff (patch) | |
tree | 7c586b5a363b80f0ecb4ab63137f89747ea72dd5 /lib/zclient.c | |
parent | 19290b43288f6636b6eca07156a4069324962751 (diff) | |
download | quagga-ff2e9e3c3816b7b828bbb023639db52364d729ff.tar.bz2 quagga-ff2e9e3c3816b7b828bbb023639db52364d729ff.tar.xz |
Number of warnings is down to 3 again in lib directory. A lot of const's
added to strings and a lot of int -> unsigned int changes.
Diffstat (limited to 'lib/zclient.c')
-rw-r--r-- | lib/zclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index 5df420f2..98829f61 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -167,7 +167,7 @@ zclient_socket () #include <sys/un.h> int -zclient_socket_un (char *path) +zclient_socket_un (const char *path) { int ret; int sock, len; |