From: Ashok Nagarajan Date: Tue, 9 Oct 2012 20:29:26 +0000 (-0700) Subject: iw: remove unnecessary variable in find_mesh_param X-Git-Tag: v3.8~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83cb979bc161a163ac03e4fc8b34936de5d3763e;p=thirdparty%2Fiw.git iw: remove unnecessary variable in find_mesh_param Also stick to coding style. use "strcmp ( , ) == 0" instead of (!strcmp( , )) Signed-off-by: Ashok Nagarajan --- diff --git a/mesh.c b/mesh.c index 3077abf..4fdad6a 100644 --- a/mesh.c +++ b/mesh.c @@ -232,19 +232,15 @@ static void print_all_mesh_param_descr(void) static const struct mesh_param_descr *find_mesh_param(const char *name) { int i; - const struct mesh_param_descr *mdescr = NULL; /* Find out what mesh parameter we want to change. */ for (i = 0; i < ARRAY_SIZE(_mesh_param_descrs); i++) { - if (!strcmp(_mesh_param_descrs[i].name, name)) + if (strcmp(_mesh_param_descrs[i].name, name) == 0) return _mesh_param_descrs + i; } - if (!mdescr) { - print_all_mesh_param_descr(); - return NULL; - } - return mdescr; + print_all_mesh_param_descr(); + return NULL; } /* Setter */