From: Peter Howkins Date: Sun, 11 Mar 2012 23:38:55 +0000 (+0000) Subject: On Linux initialise tt_strings as () rather than (NULL) X-Git-Tag: 2.2.0a~26^2~138 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=59483003016174da90069c8094e36d7a00478b39;p=oweals%2Fcde.git On Linux initialise tt_strings as () rather than (NULL) --- diff --git a/cde/lib/tt/lib/mp/mp_message.C b/cde/lib/tt/lib/mp/mp_message.C index c353ce94..34e5b4a0 100644 --- a/cde/lib/tt/lib/mp/mp_message.C +++ b/cde/lib/tt/lib/mp/mp_message.C @@ -118,9 +118,15 @@ base_constructor() _Tt_message:: _Tt_message() +#if defined(linux) +: _pattern_id(), _object(), _file(), _op(), + _otype(), _sender_ptype(), _handler_ptype(), + _api_id(), _status_string() +#else : _pattern_id(NULL), _object(NULL), _file(NULL), _op(NULL), _otype(NULL), _sender_ptype(NULL), _handler_ptype(NULL), _api_id(NULL), _status_string(NULL) +#endif { base_constructor(); }