Commit 1a3afcb7 1a3afcb7eef0fc7c0f55dceb420afd2a12d1d91b by Sergey Poznyakoff

shut up a gcc warning

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