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
6203ae65
...
6203ae65f53758a4b893e6e176be7c153a31bef0
authored
2010-10-25 17:16:55 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix.
* mh/mh_init.c (mh_safe_make_file_name): Avoid gcc warnings.
1 parent
08f69cc3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mh/mh_init.c
mh/mh_init.c
View file @
6203ae6
...
...
@@ -1030,13 +1030,13 @@ mh_draft_message (const char *name, const char *msgspec, char **pname)
char
*
mh_safe_make_file_name
(
const
char
*
dir
,
const
char
*
file
)
{
fil
e
=
mu_make_file_name
(
dir
,
file
);
if
(
!
fil
e
)
char
*
nam
e
=
mu_make_file_name
(
dir
,
file
);
if
(
!
nam
e
)
{
mu_diag_funcall
(
MU_DIAG_ERROR
,
"mu_make_file_name"
,
NULL
,
ENOMEM
);
abort
();
}
return
fil
e
;
return
nam
e
;
}
...
...
Please
register
or
sign in
to post a comment