Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!ucbvax!ucdavis!csusac!sactoh0!pacbell!pcbox!pjc From: pjc@pcbox.UUCP (Paul J. Condie) Newsgroups: alt.sources Subject: menu(1) Keywords: menu Message-ID: <434@pcbox.UUCP> Date: 11 Apr 90 21:31:20 GMT Organization: Yet Another Box - Casto Valley, Ca. Lines: 11 It has been pointed out to me that on some machines while compiling menu you will get a warning message about "ambiguous assignment..." on rundriver.c line 161 and line 166. if you change line 161 from this: *option =*option >= menu->optioncount ? 1 : ++(*option); to this: *option =(*option) >= menu->optioncount ? 1 : ++(*option); putting paranthesis around *option will get rid of the warning. The same for line 166, put parenthesis around *option.