hurd: Fix _NOFLSH value
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 15 Jan 2023 19:54:42 +0000 (20:54 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 15 Jan 2023 19:56:12 +0000 (20:56 +0100)
commit569cfcc6bf35c28112ca8d7112e9eb4a22bed5b8
tree61a39ba4d9fa9ee151e7946082a0dcfad68b2b1f
parent7e31d166510ac4adbf53d5e8144c709a37dd8c7a
hurd: Fix _NOFLSH value

shifting 1 (thus an integer) left 31 bit is undefined behavior. We have to
make it an unsigned integer to properly get 0x80000000 (like done in other
places).
bits/termios.h