diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-16 00:25:26 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-16 00:25:26 -0700 |
commit | 6abf5c0c6fb2ad9bb24444171d306262a8c8f4a2 (patch) | |
tree | c064afca1d200f57467144764aedbf3ce9992af6 /connect.c | |
parent | c09a69a83e3edcc634f17cdc7b4c71b91f3228ce (diff) | |
download | git-6abf5c0c6fb2ad9bb24444171d306262a8c8f4a2.tar.gz |
Squelch compiler warnings from connect.c
Forgot to include necessary header file to get the function declaration.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'connect.c')
-rw-r--r-- | connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include "cache.h" #include "pkt-line.h" #include "quote.h" +#include "refs.h" #include <sys/wait.h> #include <sys/socket.h> #include <netinet/in.h> |