Skip to content

Commit fd81316

Browse files
committed
Fix build warning on 32bit systems
Signed-off-by: falkTX <[email protected]>
1 parent c40c66e commit fd81316

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/nsmd.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ wait_for_announce ( void )
557557
break;
558558
}
559559

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

563564
void

0 commit comments

Comments
 (0)