From: Peter Howkins Date: Mon, 2 Apr 2012 14:14:09 +0000 (+0100) Subject: C++ needs variables to have a type, use int as a default. X-Git-Tag: 2.2.0a~26^2~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dcbef994e070488fab84a4cdafac060e30e143cd;p=oweals%2Fcde.git C++ needs variables to have a type, use int as a default. --- diff --git a/cde/programs/dtmail/dtmail/RoamApp.C b/cde/programs/dtmail/dtmail/RoamApp.C index b4bf515b..ab36d16f 100644 --- a/cde/programs/dtmail/dtmail/RoamApp.C +++ b/cde/programs/dtmail/dtmail/RoamApp.C @@ -1649,7 +1649,7 @@ RoamApp::setBusyState( DtMailBusyState busy_state, void *client_data) { - static const MAXBUSYSTATES=20; + static const int MAXBUSYSTATES=20; static int busyStateStackTop = 0; static DtMailBusyState busyStateStack[MAXBUSYSTATES] = {DtMailBusyState_NotBusy};