IOS-1614 Fix warning about cast.

IOS-1614
Dirk Zimmermann 2019-05-28 10:02:17 +02:00
parent 03b0b30dc2
commit 116b7162a6
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
{
NSNumber *ctNum = self[kPepCommType];
if (!ctNum) {
return PEP_ct_unknown;
return PEPCommTypeUnknown;
}
return ctNum.intValue;
}