aboutsummaryrefslogtreecommitdiff
path: root/src/misc/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/config.h')
-rw-r--r--src/misc/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/config.h b/src/misc/config.h
index 7db13de..4135f9e 100644
--- a/src/misc/config.h
+++ b/src/misc/config.h
@@ -14,11 +14,11 @@
enum field_e { FIELD_PRIME = 1 << 0, FIELD_BINARY = 1 << 1 };
enum format_e { FORMAT_JSON };
enum points_e {
- POINTS_NONE = 0,
- POINTS_PRIME,
+ POINTS_PRIME = 0,
+ POINTS_NONPRIME,
POINTS_RANDOM,
POINTS_ALL,
- POINTS_NONPRIME
+ POINTS_NONE
};
struct points_s {
enum points_e type;