diff options
author | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2009-02-03 15:58:39 +0000 |
---|---|---|
committer | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2009-02-03 15:58:39 +0000 |
commit | 4b6356b8f80b8e23aeb90fa0e59f05411272dff2 (patch) | |
tree | 2191e87c77285270afdb300a4064a2bf24a62404 | |
parent | 449ac6cde9b942e324488ed92e0ca47470c7d489 (diff) | |
download | ATCD-4b6356b8f80b8e23aeb90fa0e59f05411272dff2.tar.gz |
ChangeLogTag: Tue Feb 3 15:57:41 UTC 2009 Adam Mitz <mitza@ociweb.com>
-rw-r--r-- | ACE/ChangeLog | 11 | ||||
-rw-r--r-- | ACE/tests/Logging_Strategy_Test.cpp | 4 |
2 files changed, 11 insertions, 4 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index c80daa00b9f..986b74e8ee1 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,9 +1,16 @@ +Tue Feb 3 15:57:41 UTC 2009 Adam Mitz <mitza@ociweb.com> + + * tests/Logging_Strategy_Test.cpp: + + Use unsigned char instead of char to index arrays, to silence + warnings from GCC 4.3. + Mon Feb 2 19:07:39 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu> * bin/MakeProjectCreator/config/global.features: - Added tao_idl_fe_gen feature to be automatically disabled. - + Added tao_idl_fe_gen feature to be automatically disabled. + Mon Feb 2 07:40:17 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl> * netsvcs/lib/Client_Logging_Handler.cpp: diff --git a/ACE/tests/Logging_Strategy_Test.cpp b/ACE/tests/Logging_Strategy_Test.cpp index 42aa3561046..dde23f13df1 100644 --- a/ACE/tests/Logging_Strategy_Test.cpp +++ b/ACE/tests/Logging_Strategy_Test.cpp @@ -467,10 +467,10 @@ int run_main (int argc, ACE_TCHAR *argv []) #else // Platform doesn't support DLLs, or configured to link // statically ACE_Logging_Strategy logging_strategy; - char ls_argc = argc - 1; + unsigned char ls_argc = argc - 1; ACE_Auto_Basic_Ptr<ACE_TCHAR *> ls_argv (new ACE_TCHAR *[ls_argc]); - for (char c = 0; c < ls_argc; c++) + for (unsigned char c = 0; c < ls_argc; c++) (ls_argv.get ())[c] = argv[c+1]; if (logging_strategy.init (ls_argc, ls_argv.get ()) == -1) |