tSquash together retarded conditional - ratox - FIFO based tox client
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 11fccffc5de8321a66b7ab813ff0f99e92daa657
DIR parent 5afc5df6a272da891437f730cc545a6daca044ef
HTML Author: sin <sin@2f30.org>
Date: Mon, 15 Sep 2014 14:36:28 +0100
Squash together retarded conditional
Diffstat:
M ratatox.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
---
DIR diff --git a/ratatox.c b/ratatox.c
t@@ -298,11 +298,8 @@ cb_name_change(Tox *m, int32_t fid, const uint8_t *data, uint16_t len, void *use
blabla(f, "name", "w", "%s\n", name);
if (memcmp(f->namestr, name, len + 1) == 0)
break;
- if (f->namestr[0] == '\0') {
- printf("%s -> %s\n", "Anonymous", name);
- } else {
- printf("%s -> %s\n", f->namestr, name);
- }
+ printf("%s -> %s\n", f->namestr[0] == '\0' ?
+ (uint8_t *)"Anonymous" : f->namestr, name);
memcpy(f->namestr, name, len + 1);
break;
}