diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2013-10-03 13:53:36 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2013-10-03 13:53:36 +0200 |
commit | cfd4e8e678b2a65720b5af2060638ffd20c38911 (patch) | |
tree | a737ec46c43c8f0377ff4f1672d66618bf65fb6a | |
parent | 02c4d61263230e3dbd7900822677c720045b80cf (diff) |
display: cache id is uint64_t
-rw-r--r-- | gtk/channel-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/channel-display.c b/gtk/channel-display.c index e0f17eb..a57453f 100644 --- a/gtk/channel-display.c +++ b/gtk/channel-display.c @@ -551,7 +551,7 @@ static SpicePalette *palette_get(SpicePaletteCache *cache, uint64_t id) return cache_find(c->palettes, id); } -static void palette_remove(SpicePaletteCache *cache, uint32_t id) +static void palette_remove(SpicePaletteCache *cache, uint64_t id) { SpiceDisplayChannelPrivate *c = SPICE_CONTAINEROF(cache, SpiceDisplayChannelPrivate, palette_cache); |