aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranciszek Malinka <franciszek.malinka@gmail.com>2022-01-29 13:19:53 +0100
committerFranciszek Malinka <franciszek.malinka@gmail.com>2022-01-29 13:19:53 +0100
commitaa3b11a003465d1cfb0aa3f055055f35e39fbac9 (patch)
tree1aa08d0420707e537a241c20b603a75a3936fa6c
parent5dd4cbbc70f4990fa8ee2805e7dbe7bda397f2f3 (diff)
Ready
-rw-r--r--ext2fs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext2fs.c b/ext2fs.c
index 3c88ce1..21e87ed 100644
--- a/ext2fs.c
+++ b/ext2fs.c
@@ -16,10 +16,9 @@
/* If you want debugging output, use the following macro. When you hand
* in, remove the #define DEBUG line. */
-// #undef DEBUG
-// #define DEBUG
+#undef DEBUG
#ifdef DEBUG
-#define debug(...) fprintf(stderr, __VA_ARGS__)
+#define debug(...) printf(__VA_ARGS__)
#else
#define debug(...)
#endif