Changeset 5210:8eb738dee9d4 in roaraudio for roard/caps.c


Ignore:
Timestamp:
11/01/11 12:23:05 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Updated ports to minimal, win32 and avr (pr2)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/caps.c

    r4708 r5210  
    7171  version = ROAR_STD_VERSION(cap); 
    7272  if ( version == 0 ) { 
    73    snpret = snprintf(ret+off, len-off, "%i-%i,", ROAR_STD_VENDOR(cap), ROAR_STD_STD(cap)); 
     73   snpret = snprintf(ret+off, len-off, "%i-%i,", (int)ROAR_STD_VENDOR(cap), (int)ROAR_STD_STD(cap)); 
    7474  } else { 
    75    snpret = snprintf(ret+off, len-off, "%i-%i-%i,", ROAR_STD_VENDOR(cap), ROAR_STD_STD(cap), version); 
     75   snpret = snprintf(ret+off, len-off, "%i-%i-%i,", (int)ROAR_STD_VENDOR(cap), (int)ROAR_STD_STD(cap), (int)version); 
    7676  } 
    7777  if ( snpret > 0 ) { 
Note: See TracChangeset for help on using the changeset viewer.