[vlc-commits] [Git][videolan/vlc][master] Deleted 3 commits: stdbit: fix typo
Konstantin Pavlov (@thresh)
gitlab at videolan.org
Mon Dec 23 19:01:35 UTC 2024
Konstantin Pavlov pushed to branch master at VideoLAN / VLC
WARNING: The push did not contain any new commits, but force pushed to delete the commits and changes below.
Deleted commits:
fd2b7142 by Rémi Denis-Courmont at 2024-12-23T12:07:36+02:00
stdbit: fix typo
Evidently (and unsurprisingly) nobody compiles our code with anything
other than GCC or LLVM.
- - - - -
a025e757 by Rémi Denis-Courmont at 2024-12-23T12:54:23+02:00
stdbit: copy-paste error, fix first_leading_zero
- - - - -
3fb3c02d by Rémi Denis-Courmont at 2024-12-23T13:00:59+02:00
Revert "stdbit: copy-paste error, fix first_leading_zero"
This reverts commit a025e757c90ea892648ada77c641e3ee702bba11.
- - - - -
1 changed file:
- compat/stdbit/stdbit.h
Changes:
=====================================
compat/stdbit/stdbit.h
=====================================
@@ -178,7 +178,7 @@ static inline unsigned int __stdc_trailing_zeros(unsigned long long value,
{
unsigned int zeros = size * CHAR_BIT;
- values <<= (sizeof (value) * CHAR_BIT) - zeros;
+ value <<= (sizeof (value) * CHAR_BIT) - zeros;
while (value != 0) {
value <<= 1;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/039c1b38e7d2f396d79d04f88e6e1185a295663b...3fb3c02d1873931c50e500c314169d1c4f22a7d2
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/039c1b38e7d2f396d79d04f88e6e1185a295663b...3fb3c02d1873931c50e500c314169d1c4f22a7d2
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list