Merge branch 'br/gccfix'

* br/gccfix:
  transport.c: squelch a gcc 4.0.1 complaint about an uninitialized variable
maint
Junio C Hamano 2007-11-02 16:14:00 -07:00
commit 7240bfeaf7
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static void insert_packed_refs(const char *packed_refs, struct ref **list)
return;

for (;;) {
int cmp, len;
int cmp = cmp, len;

if (!fgets(buffer, sizeof(buffer), f)) {
fclose(f);