From 644d5922b2b820871dd0b55fd299bef36a248a65 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 24 Mar 2010 16:28:42 -0500 Subject: [PATCH] Style: foo[0] is preferable to *foo --- gatchat/gatserver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gatchat/gatserver.c b/gatchat/gatserver.c index d48e251..71e366d 100644 --- a/gatchat/gatserver.c +++ b/gatchat/gatserver.c @@ -371,7 +371,7 @@ static unsigned int parse_basic_command(GAtServer *server, char *buf) i = strlen(prefix); - if (*prefix == 'D') { + if (prefix[0] == 'D') { type = G_AT_SERVER_REQUEST_TYPE_SET; /* All characters appearing on the same line, up to a @@ -428,7 +428,7 @@ done: /* Commands like ATA, ATZ cause the remainder line * to be ignored. */ - if (*prefix == 'A' || *prefix == 'Z') + if (prefix[0] == 'A' || prefix[0] == 'Z') return strlen(buf); /* Consumed the seperator ';' */ -- 2.7.4