Turn off debug output.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28157 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-10-16 00:06:42 +00:00
parent 2cf4975b4b
commit fcbcb00e18
4 changed files with 8 additions and 4 deletions
@@ -16,7 +16,8 @@
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#define TRACE(x) dprintf x //#define TRACE(x) dprintf x
#define TRACE(x) do {} while (0)
namespace FATFS { namespace FATFS {
@@ -12,7 +12,8 @@
#include <unistd.h> #include <unistd.h>
#define TRACE(x) dprintf x //#define TRACE(x) dprintf x
#define TRACE(x) do {} while (0)
namespace FATFS { namespace FATFS {
@@ -19,7 +19,8 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#define TRACE(x) dprintf x //#define TRACE(x) dprintf x
#define TRACE(x) do {} while (0)
using namespace FATFS; using namespace FATFS;
@@ -18,7 +18,8 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#define TRACE(x) dprintf x //#define TRACE(x) dprintf x
#define TRACE(x) do {} while (0)
using namespace FATFS; using namespace FATFS;