summaryrefslogtreecommitdiff
path: root/fsck.h
diff options
context:
space:
mode:
Diffstat (limited to 'fsck.h')
-rw-r--r--fsck.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/fsck.h b/fsck.h
index baf3762..a7e092d 100644
--- a/fsck.h
+++ b/fsck.h
@@ -4,11 +4,13 @@
#include "oidset.h"
enum fsck_msg_type {
- FSCK_INFO = -2,
- FSCK_FATAL = -1,
- FSCK_ERROR = 1,
+ /* for internal use only */
+ FSCK_IGNORE,
+ FSCK_INFO,
+ FSCK_FATAL,
+ /* "public", fed to e.g. error_func callbacks */
+ FSCK_ERROR,
FSCK_WARN,
- FSCK_IGNORE
};
struct fsck_options;