Skip to content

Commit

Permalink
[JFFS2] Fix broken compile when debug level = 2
Browse files Browse the repository at this point in the history
Signed-off-by: Artem B. Bityutskiy <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
dedekind authored and Thomas Gleixner committed Nov 6, 2005
1 parent cfd320f commit 008531f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/jffs2/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: debug.h,v 1.18 2005/09/21 10:26:26 dedekind Exp $
* $Id: debug.h,v 1.20 2005/10/24 16:22:34 dedekind Exp $
*
*/
#ifndef _JFFS2_DEBUG_H_
Expand All @@ -19,7 +19,7 @@
#define CONFIG_JFFS2_FS_DEBUG 0
#endif

#if CONFIG_JFFS2_FS_DEBUG == 1
#if CONFIG_JFFS2_FS_DEBUG > 0
/* Enable "paranoia" checks and dumps */
#define JFFS2_DBG_PARANOIA_CHECKS
#define JFFS2_DBG_DUMPS
Expand All @@ -37,7 +37,7 @@
#define JFFS2_DBG_FSBUILD_MESSAGES
#endif

#if CONFIG_JFFS2_FS_DEBUG == 2
#if CONFIG_JFFS2_FS_DEBUG > 1
#define JFFS2_DBG_FRAGTREE2_MESSAGES
#define JFFS2_DBG_MEMALLOC_MESSAGES
#endif
Expand Down

0 comments on commit 008531f

Please sign in to comment.