mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
io: Fix double shift usages on QIOChannel features
When QIOChannels were introduced in666a3af9
, the feature bits were already defined shifted. However, when using them, the code was shifting them again. The incorrect use was consistent until74b6ce43
, where QIO_CHANNEL_FEATURE_LISTEN was defined shifted but tested unshifted. This patch changes the definition to be unshifted and fixes the incorrect usage introduced on74b6ce43
. Signed-off-by: Felipe Franciosi <felipe@nutanix.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
da158a86c4
commit
8fbf661212
2 changed files with 4 additions and 4 deletions
|
@ -40,9 +40,9 @@ typedef struct QIOChannelClass QIOChannelClass;
|
|||
typedef enum QIOChannelFeature QIOChannelFeature;
|
||||
|
||||
enum QIOChannelFeature {
|
||||
QIO_CHANNEL_FEATURE_FD_PASS = (1 << 0),
|
||||
QIO_CHANNEL_FEATURE_SHUTDOWN = (1 << 1),
|
||||
QIO_CHANNEL_FEATURE_LISTEN = (1 << 2),
|
||||
QIO_CHANNEL_FEATURE_FD_PASS,
|
||||
QIO_CHANNEL_FEATURE_SHUTDOWN,
|
||||
QIO_CHANNEL_FEATURE_LISTEN,
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue