Fixes warning: enumeration value 'AFFinalBoundaryPhase' not explicitly handled in switch [-Werror,-Wswitch-enum]

This commit is contained in:
Oliver Jones 2012-11-30 18:14:26 +11:00
parent b64c6bd846
commit d38895e5d8

View file

@ -1176,7 +1176,7 @@ typedef enum {
[self.inputStream close];
_phase = AFFinalBoundaryPhase;
break;
default:
case AFFinalBoundaryPhase:
_phase = AFEncapsulationBoundaryPhase;
break;
}