changeset 553:b464409fa643

Make LOG_* flags enum more readable and extendable by using hexadecimal values.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 12 Nov 2012 19:10:58 +0200
parents dfe46cd1b81b
children 13901e9be15b
files main.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/main.c	Mon Nov 12 19:10:01 2012 +0200
+++ b/main.c	Mon Nov 12 19:10:58 2012 +0200
@@ -79,10 +79,10 @@
  */
 enum
 {
-    LOG_FILE   = 1,
-    LOG_WINDOW = 2,
-    LOG_STAMP  = 4,
-    LOG_FILE2  = 8
+    LOG_FILE       = 0x0001,
+    LOG_WINDOW     = 0x0002,
+    LOG_STAMP      = 0x0004,
+    LOG_FILE2      = 0x0008,
 };