diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-31 14:38:49 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-31 14:38:49 +0000 |
commit | 24bf464f1d737ca3dadc750e5cf49119ee978c8a (patch) | |
tree | 3770b8cdb436a53c8321c37678b20b50f5415507 /ace/Log_Msg.cpp | |
parent | f32606eb6576e29ebbe90c93863bf478718fd8cc (diff) | |
download | ATCD-24bf464f1d737ca3dadc750e5cf49119ee978c8a.tar.gz |
replaced NSIG with ACE_NSIG
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); |