diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:10:50 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:10:50 +0100 |
commit | 15359ed2694c5fc924bcda4bf9b6c1898fa58455 (patch) | |
tree | db7fadbfb180014880f01406322e7e87128db00c /spice | |
parent | fa94dbba3f667107b2d94674810bb2f489b050ce (diff) |
Fix up SPICE_SPICE typo
Diffstat (limited to 'spice')
-rw-r--r-- | spice/ipc_ring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spice/ipc_ring.h b/spice/ipc_ring.h index 404a577..d8d854f 100644 --- a/spice/ipc_ring.h +++ b/spice/ipc_ring.h @@ -47,7 +47,7 @@ (((x) & 0xff00) ? _SPICE_MSB_MASK8((x) >> 8) << 8 : _SPICE_MSB_MASK8(x)) #define _SPICE_MSB_MASK(x) \ - (((x) & 0xffff0000) ? _SPICE__SPICE_MSB_MASK16((x) >> 16) << 16 : _SPICE__SPICE_MSB_MASK16(x)) + (((x) & 0xffff0000) ? _SPICE_MSB_MASK16((x) >> 16) << 16 : _SPICE_MSB_MASK16(x)) #define _SPICE_POWER2_ALIGN(x) _SPICE_MSB_MASK((x) * 2 - 1) |