On Thu, 10 Jul 2014, Jakub Jelinek wrote: > +Wmemset-transposed-args > +C ObjC C++ ObjC++ Var(warn_memset_transposed_args) Warning LangEnabledBy(C > ObjC C++ ObjC++,Wall) > +Warn about suspicious call to memset where the third argument is constant > zero and second is not zero
"calls" (plural), like in the .texi documentation? "and the second" (If you want to keep it short, you could say "the third argument is constant zero and the second is not".) > +Warn for suspicious calls to the memset built-in function, if the Should this be @code{memset} as well? > +second argument is not zero and third argument is zero. This warns e.g.@ "the third argument" > +about @code{memset (buf, sizeof buf, 0);} where most probably > +@code{memset (buf, 0, sizeof buf);} was meant instead. I believe this will look better without the semicolons. Gerald