diff options
Diffstat (limited to 'ace/Log_Msg.cpp')
-rw-r--r-- | ace/Log_Msg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp index 67784e68872..28c30aa495b 100644 --- a/ace/Log_Msg.cpp +++ b/ace/Log_Msg.cpp @@ -744,7 +744,7 @@ ACE_Log_Msg::log (const char *format_str, int sig = va_arg (argp, int); type = SKIP_SPRINTF; #if defined (ACE_HAS_SYS_SIGLIST) - if (sig >= 0 && sig < NSIG) + if (sig >= 0 && sig < ACE_NSIG) ACE_OS::strcpy (bp, _sys_siglist[sig]); else ACE_OS::sprintf (bp, "<unknown signal> %d", sig); |