* Implemented ERROR as fprintf(stderr, ...) with tracing turned off as well.

* Fixed all but one compiler warnings in libmedia.so.
* Truncated lines to 80 char width where I looked at code.
* Turned printf()s into TRACE/ERROR calls in MediaExtractor.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24478 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2008-03-19 19:39:07 +00:00
parent d14375b803
commit 4a46d818c9
6 changed files with 75 additions and 43 deletions
+1 -1
View File
@@ -44,7 +44,7 @@
#define BROKEN() ((void)0)
#define CALLED() ((void)0)
#define PRINT(l, a...) ((void)0)
#define ERROR(a...) ((void)0)
#define ERROR(a...) fprintf(stderr, a)
#define TRACE(a...) ((void)0)
#endif