Skip to content

Commit

Permalink
Fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sjhoeksma committed Nov 15, 2016
1 parent 8422c33 commit 5d85918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/TouchID.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ -(void)verify:(CDVInvokedUrlCommand*)command{
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
if(error != nil) {
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString: [NSString stringWithFormat:@"%i", error.code]];
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString: [NSString stringWithFormat:@"%li", error.code]];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
});
Expand Down

0 comments on commit 5d85918

Please sign in to comment.