clamfs-1.0.1-gcc45.patch 391 B

12345678910111213141516
  1. Fix building with gcc 4.5
  2. http://bugs.gentoo.org/show_bug.cgi?id=320107
  3. --- src/scancache.cxx
  4. +++ src/scancache.cxx
  5. @@ -37,7 +37,7 @@
  6. }
  7. ScanCache::ScanCache(long int elements, long int expire):
  8. - ExpireLRUCache<ino_t, CachedResult>::ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
  9. + ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
  10. }
  11. ScanCache::~ScanCache() {