Browse Source

fix: romfs的调试开关做反了

Wendal Chen 2 years ago
parent
commit
578b5aa216
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/romfs/luat_vfs_romfs.c

+ 1 - 1
components/romfs/luat_vfs_romfs.c

@@ -7,7 +7,7 @@
 #include "luat_romfs.h"
 
 #define ROMFS_DEBUG 0
-#if ROMFS_DEBUG != 0
+#if ROMFS_DEBUG == 0
 #undef LLOGD
 #define LLOGD(...)
 #endif