diff options
author | Pavel Roskin <proski@gnu.org> | 2006-07-10 02:57:51 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-10 00:47:13 -0700 |
commit | a9486b02ec7e03d17317fe538b0d06ca04379f23 (patch) | |
tree | b5b4ac5d1caba95de4f2571b46ac600f43b48fce /ssh-fetch.c | |
parent | 82e5a82fd73edb80a841f5fab1660e14b9b8f3ad (diff) | |
download | git-a9486b02ec7e03d17317fe538b0d06ca04379f23.tar.gz |
Avoid C99 comments, use old-style C comments instead.
This doesn't make the code uglier or harder to read, yet it makes the
code more portable. This also simplifies checking for other potential
incompatibilities. "gcc -std=c89 -pedantic" can flag many incompatible
constructs as warnings, but C99 comments will cause it to emit an error.
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'ssh-fetch.c')
-rw-r--r-- | ssh-fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-fetch.c b/ssh-fetch.c index 1e59cd2008..28f7fd9174 100644 --- a/ssh-fetch.c +++ b/ssh-fetch.c @@ -68,7 +68,7 @@ int fetch(unsigned char *sha1) struct object_list *temp; if (memcmp(sha1, in_transit->item->sha1, 20)) { - // we must have already fetched it to clean the queue + /* we must have already fetched it to clean the queue */ return has_sha1_file(sha1) ? 0 : -1; } prefetches--; @@ -85,7 +85,7 @@ int fetch(unsigned char *sha1) if (read(fd_in, &remote, 1) < 1) return -1; } - //fprintf(stderr, "Got %d\n", remote); + /* fprintf(stderr, "Got %d\n", remote); */ if (remote < 0) return remote; ret = write_sha1_from_fd(sha1, fd_in, conn_buf, 4096, &conn_buf_posn); |