Changeset 313:d77eae944d12

Show
Ignore:
Timestamp:
10/17/08 18:25:58 (3 months ago)
Author:
vadim@mbdsys.com
Message:

use printf in place of ph_printf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • phapi/phmedia-audio.c

    r312 r313  
    22272227{ 
    22282228       int ecode = h_errno - WSABASEERR; 
    2229        ph_printf("%s Winsock error: %d\n", text, ecode) ; 
     2229       printf("%s Winsock error: %d\n", text, ecode) ; 
    22302230} 
    22312231#else 
    22322232void xperror(const char *text) 
    22332233{ 
    2234   ph_printf("%s error %s\n", text, strerror(errno)); 
     2234  printf("%s error %s\n", text, strerror(errno)); 
    22352235} 
    22362236#endif