examples/general: fix warnings on not handled reference type in switch

examples/general.c:402:5: warning: enumeration value ‘GIT_REF_INVALID’ not handled in switch [-Wswitch]
examples/general.c:402:5: warning: enumeration value ‘GIT_REF_PACKED’ not handled in switch [-Wswitch]
examples/general.c:402:5: warning: enumeration value ‘GIT_REF_HAS_PEEL’ not handled in switch [-Wswitch]
examples/general.c:402:5: warning: enumeration value ‘GIT_REF_LISTALL’ not handled in switch [-Wswitch]

Signe-off-by: Kirill A. Shutemov <kirill@shutemov.name>
This commit is contained in:
Kirill A. Shutemov 2011-07-05 11:54:16 +03:00
parent 51cc50a37d
commit d6d877d20f

View File

@ -408,6 +408,9 @@ int main (int argc, char** argv)
case GIT_REF_SYMBOLIC: case GIT_REF_SYMBOLIC:
printf("%s => %s\n", refname, git_reference_target(ref)); printf("%s => %s\n", refname, git_reference_target(ref));
break; break;
default:
fprintf(stderr, "Unexpected reference type\n");
exit(1);
} }
} }