Changeset 488
- Timestamp:
- 01/12/16 23:08:49 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/mpcenc/mpcenc.c
r487 r488 1024 1024 else if ( 0 == strcmp ( arg, "stderr") ) { // Offset for threshold in quiet 1025 1025 if ( ++k >= argc ) { stderr_printf ( errmsg, arg ); return -1; } 1026 stderr = freopen ( argv[k], "a", stderr );1026 if ( 0 == freopen ( argv[k], "a", stderr ) ) { stderr_printf ("invalid stderr filename"); return -1; } 1027 1027 } 1028 1028 else if ( 0 == strcmp ( arg, "ltq") || 0 == strcmp ( arg, "ath") ) { // threshold in quiet … … 1459 1459 cw &= ~0x300; 1460 1460 _asm { fldcw cw }; 1461 #else 1462 (void)cw; // remove unused variable warning 1461 1463 #endif 1462 1464 }
Note: See TracChangeset
for help on using the changeset viewer.