1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-20 06:56:05 +02:00

unposted: zerrmsg(): Fix macro guard missed in previous commit

This commit is contained in:
dana 2019-12-26 14:57:07 -06:00
parent 7eb1aedc6c
commit ed21a7b700
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2019-12-26 dana <dana@dana.is>
* unposted: Src/utils.c: Fix macro guard missed in previous
commit
2019-12-26 Daniel Shahaf <danielsh@apache.org>
* unposted: Src/utils.c: internal: Allow %L in zerrmsg() in

View File

@ -287,9 +287,7 @@ zerrmsg(FILE *file, const char *fmt, va_list ap)
{
const char *str;
int num;
#ifdef DEBUG
long lnum;
#endif
#ifdef HAVE_STRERROR_R
#define ERRBUFSIZE (80)
int olderrno;