required by prev commit: follow api change to work around marshmallow

address change.
This commit is contained in:
Eric House 2015-12-21 16:27:11 -08:00
parent 7805900c07
commit f7df11b923
2 changed files with 2 additions and 2 deletions

View file

@ -450,7 +450,7 @@ public class CommsTransport implements TransportProcs,
gameID, buf ); gameID, buf );
break; break;
case COMMS_CONN_BT: case COMMS_CONN_BT:
nSent = BTService.enqueueFor( context, buf, addr.bt_btAddr, gameID ); nSent = BTService.enqueueFor( context, buf, addr, gameID );
break; break;
default: default:
Assert.fail(); Assert.fail();

View file

@ -62,7 +62,7 @@ public class MultiMsgSink implements TransportProcs {
public int sendViaBluetooth( byte[] buf, int gameID, CommsAddrRec addr ) public int sendViaBluetooth( byte[] buf, int gameID, CommsAddrRec addr )
{ {
return BTService.enqueueFor( m_context, buf, addr.bt_btAddr, gameID ); return BTService.enqueueFor( m_context, buf, addr, gameID );
} }
public int sendViaSMS( byte[] buf, int gameID, CommsAddrRec addr ) public int sendViaSMS( byte[] buf, int gameID, CommsAddrRec addr )