mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-22 14:53:33 -05:00
my compiler complains about this; does my fix comply with the intended behavior?
This commit is contained in:
parent
2a2f5ad8fa
commit
6568f10b7d
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ lutil_uuidstr( char *buf, size_t len )
|
|||
|
||||
t1 = tl & 0xffffffff; /* time_low */
|
||||
t2 = ( tl >> 32 ) & 0xffff; /* time_mid */
|
||||
t3 = ( tl >> 48 ) & 0x0fff | 0x1000; /* time_hi_and_version */
|
||||
t3 = ( ( tl >> 48 ) & 0x0fff ) | 0x1000; /* time_hi_and_version */
|
||||
s1 = ( ++seq & 0x1fff ) | 0x8000; /* clock_seq_and_reserved */
|
||||
|
||||
t1 = snprintf( buf, len,
|
||||
|
|
|
|||
Loading…
Reference in a new issue