mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
more ITS#6324: fix fprintf(%u, long) format
This commit is contained in:
parent
dc26fb37eb
commit
1ebe7a6eaf
1 changed files with 2 additions and 2 deletions
|
|
@ -3206,8 +3206,8 @@ loglevel_print( FILE *out )
|
|||
for ( i = 0; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
|
||||
fprintf( out, "\t%-30s (%u, 0x%x)\n",
|
||||
loglevel_ops[ i ].word.bv_val,
|
||||
loglevel_ops[ i ].mask,
|
||||
loglevel_ops[ i ].mask );
|
||||
(unsigned) loglevel_ops[ i ].mask,
|
||||
(unsigned) loglevel_ops[ i ].mask );
|
||||
}
|
||||
|
||||
fprintf( out, "\nNOTE: custom log subsystems may be later installed "
|
||||
|
|
|
|||
Loading…
Reference in a new issue