Commit 1a3afcb7 1a3afcb7eef0fc7c0f55dceb420afd2a12d1d91b by Sergey Poznyakoff

shut up a gcc warning

1 parent e9fccbce
Showing 1 changed file with 2 additions and 2 deletions
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
Copyright (C) 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
......@@ -1551,7 +1551,7 @@ normalize_path (char *cwd, char *path)
/* Copy stuff */
s = p + 2;
p = q;
while (*q++ = *s++)
while ((*q++ = *s++))
;
continue;
}
......