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:
parent
0b1ce6ba98
commit
25b18337e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue