Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*._man
/*.o
/Makefile
/Makefile.bak
/imake
2 changes: 1 addition & 1 deletion imake.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ LogFatal(x0,x1)
char *x0, *x1;
{
#ifndef WIN32
extern char *sys_errlist[];
extern const char *const sys_errlist[];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

per perror(3) direct access to sys_errlist is deprecated in favor of strerror(). It looks like there's only one site to change, if you had interest in doing that. If not, that's okay, too.

Thanks for submitting these fixes.

#endif
static boolean entered = FALSE;

Expand Down