diff --git a/usr.bin/menuc/menu_sys.def b/usr.bin/menuc/menu_sys.def index 3913e4dbf489..d42ced78bd31 100644 --- a/usr.bin/menuc/menu_sys.def +++ b/usr.bin/menuc/menu_sys.def @@ -1,4 +1,4 @@ -/* $NetBSD: menu_sys.def,v 1.55 2004/08/14 15:51:08 dsl Exp $ */ +/* $NetBSD: menu_sys.def,v 1.56 2004/09/17 18:15:01 wrstuden Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -150,7 +150,7 @@ init_menu(menudesc *m) if (m->title && *(title = MSG_XLAT(m->title)) != 0) { /* Allow multiple line titles */ - for (tp = title; ep = strchr(tp, '\n'); tp = ep + 1) { + for (tp = title; (ep = strchr(tp, '\n')); tp = ep + 1) { i = ep - tp; wmax = MAX(wmax, i); hadd++;