1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

C++ needs variables to have a type, use int as a default.

This commit is contained in:
Peter Howkins 2012-04-02 15:14:09 +01:00
parent 8f43a96122
commit dcbef994e0

View file

@ -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};