Browse Source

Fix build warning on 32bit systems

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.3
falkTX 4 years ago
parent
commit
fd813166d5
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/nsmd.cpp

+ 2
- 1
src/nsmd.cpp View File

@@ -557,7 +557,8 @@ wait_for_announce ( void )
break;
}

GUIMSG( "Done. %lu out of %lu clients announced within the initialization grace period", active, client.size() );
GUIMSG( "Done. %lu out of %lu clients announced within the initialization grace period",
active, (long unsigned)client.size() );
}

void


Loading…
Cancel
Save