aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorokan2011-06-24 05:54:30 +0000
committerokan2011-06-24 05:54:30 +0000
commitcde63a3f692ede29d47b455b4a29159409c7d726 (patch)
tree37bd5d063e5a8f844c6774c37430fd018dfc1c63
parent870f52522d5c0a2f646feb5a386fb534a6ceec84 (diff)
downloadcwm-cde63a3f692ede29d47b455b4a29159409c7d726.tar.gz
more nitems usage.
ok oga@
-rw-r--r--conf.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/conf.c b/conf.c
index c04dd0d..775ae2c 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.82 2011/06/24 05:45:57 okan Exp $
+ * $OpenBSD: conf.c,v 1.83 2011/06/24 05:54:30 okan Exp $
*/
#include <sys/param.h>
@@ -414,7 +414,6 @@ static struct {
{.i = (CWM_LEFT|CWM_PTRMOVE|CWM_BIGMOVE)} },
{ "bigptrmoveright", kbfunc_moveresize, 0,
{.i = (CWM_RIGHT|CWM_PTRMOVE|CWM_BIGMOVE)} },
- { NULL, NULL, 0, {0}},
};
/*
@@ -503,7 +502,7 @@ conf_bindname(struct conf *c, char *name, char *binding)
if (strcmp("unmap", binding) == 0)
return;
- for (iter = 0; name_to_kbfunc[iter].tag != NULL; iter++) {
+ for (iter = 0; iter < nitems(name_to_kbfunc); iter++) {
if (strcmp(name_to_kbfunc[iter].tag, binding) != 0)
continue;
@@ -558,7 +557,6 @@ static struct {
{ "menu_group", mousefunc_menu_group, MOUSEBIND_CTX_ROOT },
{ "menu_unhide", mousefunc_menu_unhide, MOUSEBIND_CTX_ROOT },
{ "menu_cmd", mousefunc_menu_cmd, MOUSEBIND_CTX_ROOT },
- { NULL, NULL, 0 },
};
void
@@ -594,7 +592,7 @@ conf_mousebind(struct conf *c, char *name, char *binding)
if (strcmp("unmap", binding) == 0)
return;
- for (iter = 0; name_to_mousefunc[iter].tag != NULL; iter++) {
+ for (iter = 0; iter < nitems(name_to_mousefunc); iter++) {
if (strcmp(name_to_mousefunc[iter].tag, binding) != 0)
continue;