summaryrefslogtreecommitdiffstats
path: root/client/shared_cache.hpp
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2012-04-25 10:51:10 +0100
committerDaniel P. Berrange <berrange@redhat.com>2012-04-25 11:00:01 +0100
commit6d7d9bc12d92e14f291d818fc46303f15e045e33 (patch)
treea0c27f9523b525505cd3e846286458b314bbf1d8 /client/shared_cache.hpp
parent3bbc53521ee2fdc177f2756297c0f4038368cef6 (diff)
downloadspice-6d7d9bc12d92e14f291d818fc46303f15e045e33.tar.gz
spice-6d7d9bc12d92e14f291d818fc46303f15e045e33.tar.xz
spice-6d7d9bc12d92e14f291d818fc46303f15e045e33.zip
Fix printf format specifiers for i686 hosts
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'client/shared_cache.hpp')
-rw-r--r--client/shared_cache.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/shared_cache.hpp b/client/shared_cache.hpp
index b9c3fd90..450116c5 100644
--- a/client/shared_cache.hpp
+++ b/client/shared_cache.hpp
@@ -159,7 +159,7 @@ public:
}
item = &(*item)->next;
}
- THROW("%s id %lu, not found", Treat::name(), id);
+ THROW("%s id %" PRIu64 ", not found", Treat::name(), id);
}
void clear()