/[svn]/liblscp/trunk/src/client.c
ViewVC logotype

Diff of /liblscp/trunk/src/client.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 735 by capela, Tue Aug 16 09:48:42 2005 UTC revision 742 by capela, Tue Aug 16 17:21:44 2005 UTC
# Line 1464  lscp_status_t lscp_set_channel_mute ( ls Line 1464  lscp_status_t lscp_set_channel_mute ( ls
1464      if (iSamplerChannel < 0 || iMute < 0 || iMute > 1)      if (iSamplerChannel < 0 || iMute < 0 || iMute > 1)
1465          return LSCP_FAILED;          return LSCP_FAILED;
1466    
1467      sprintf(szQuery, "SET CHANNEL MUTE %d %g\r\n", iSamplerChannel, iMute);      sprintf(szQuery, "SET CHANNEL MUTE %d %d\r\n", iSamplerChannel, iMute);
1468      return lscp_client_query(pClient, szQuery);      return lscp_client_query(pClient, szQuery);
1469  }  }
1470    
# Line 1488  lscp_status_t lscp_set_channel_solo ( ls Line 1488  lscp_status_t lscp_set_channel_solo ( ls
1488      if (iSamplerChannel < 0 || iSolo < 0 || iSolo > 1)      if (iSamplerChannel < 0 || iSolo < 0 || iSolo > 1)
1489          return LSCP_FAILED;          return LSCP_FAILED;
1490    
1491      sprintf(szQuery, "SET CHANNEL SOLO %d %g\r\n", iSamplerChannel, iSolo);      sprintf(szQuery, "SET CHANNEL SOLO %d %d\r\n", iSamplerChannel, iSolo);
1492      return lscp_client_query(pClient, szQuery);      return lscp_client_query(pClient, szQuery);
1493  }  }
1494    

Legend:
Removed from v.735  
changed lines
  Added in v.742

  ViewVC Help
Powered by ViewVC