Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
1a3afcb7
...
1a3afcb7eef0fc7c0f55dceb420afd2a12d1d91b
authored
2007-06-26 13:58:14 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
shut up a gcc warning
1 parent
e9fccbce
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/mhn.c
mh/mhn.c
View file @
1a3afcb
/* 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
;
}
...
...
Please
register
or
sign in
to post a comment