Change errorCode from long to int

This commit is contained in:
Cameron Gutman
2020-02-25 00:00:00 -08:00
parent 65578b8a64
commit 742bb7b516
4 changed files with 10 additions and 10 deletions

View File

@@ -251,7 +251,7 @@ void ClStageComplete(int stage)
[_callbacks stageComplete:LiGetStageName(stage)];
}
void ClStageFailed(int stage, long errorCode)
void ClStageFailed(int stage, int errorCode)
{
[_callbacks stageFailed:LiGetStageName(stage) withError:errorCode];
}
@@ -261,7 +261,7 @@ void ClConnectionStarted(void)
[_callbacks connectionStarted];
}
void ClConnectionTerminated(long errorCode)
void ClConnectionTerminated(int errorCode)
{
[_callbacks connectionTerminated: errorCode];
}