From 7a7e4f573a55ce456bb486645d8937f4f6fe18e8 Mon Sep 17 00:00:00 2001 From: Zetok Zalbavar Date: Mon, 28 Jul 2014 01:16:54 +0100 Subject: [PATCH] Fix ONLINE_CHAR being identical to OFFLINE_CHAR --- src/toxic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toxic.h b/src/toxic.h index 314b89f..ec386e6 100644 --- a/src/toxic.h +++ b/src/toxic.h @@ -65,7 +65,7 @@ #define T_KEY_C_Y 0x19 /* ctrl-y */ #define ONLINE_CHAR "*" -#define OFFLINE_CHAR "*" +#define OFFLINE_CHAR "o" typedef enum _FATAL_ERRS { FATALERR_MEMORY = -1, /* malloc() or calloc() failed */