aboutsummaryrefslogtreecommitdiffstats
path: root/src/dls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dls.h')
-rw-r--r--src/dls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dls.h b/src/dls.h
index 135da48..84ff4c5 100644
--- a/src/dls.h
+++ b/src/dls.h
@@ -40,11 +40,11 @@
// DL/DL+ commands
enum {
- DLS_CMD_REMOVE_LABEL = 0b0001,
- DLS_CMD_DL_PLUS = 0b0010
+ DLS_CMD_REMOVE_LABEL = 0x1 /* 0b0001 */,
+ DLS_CMD_DL_PLUS = 0x2 /* 0b0010 */
};
enum {
- DL_PLUS_CMD_TAGS = 0b0000
+ DL_PLUS_CMD_TAGS = 0x0 /* 0b0000 */
};