Changeset 313:d77eae944d12
- 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
| r312 |
r313 |
|
| 2227 | 2227 | { |
|---|
| 2228 | 2228 | int ecode = h_errno - WSABASEERR; |
|---|
| 2229 | | ph_printf("%s Winsock error: %d\n", text, ecode) ; |
|---|
| | 2229 | printf("%s Winsock error: %d\n", text, ecode) ; |
|---|
| 2230 | 2230 | } |
|---|
| 2231 | 2231 | #else |
|---|
| 2232 | 2232 | void xperror(const char *text) |
|---|
| 2233 | 2233 | { |
|---|
| 2234 | | ph_printf("%s error %s\n", text, strerror(errno)); |
|---|
| | 2234 | printf("%s error %s\n", text, strerror(errno)); |
|---|
| 2235 | 2235 | } |
|---|
| 2236 | 2236 | #endif |
|---|