1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(main): Parenthesize assignment when used as truth value to prevent gcc

warnings.
This commit is contained in:
Pavel Janík 2002-01-01 22:08:54 +00:00
parent 0b1ce6ba98
commit 25b18337e9

View file

@ -168,7 +168,7 @@ main (argc, argv)
p = strtok (data.buffer, " ,\r\n\t");
labels = "X-Babyl-Labels: ";
while (p = strtok (NULL, " ,\r\n\t"))
while ((p = strtok (NULL, " ,\r\n\t")))
labels = concat (labels, p, ", ");
p = &labels[strlen (labels) - 2];