You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/clamfs/files/clamfs-1.0.1-gcc45.patch

16 lines
391 B

Fix building with gcc 4.5
http://bugs.gentoo.org/show_bug.cgi?id=320107
--- src/scancache.cxx
+++ src/scancache.cxx
@@ -37,7 +37,7 @@
}
ScanCache::ScanCache(long int elements, long int expire):
- ExpireLRUCache<ino_t, CachedResult>::ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
+ ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
}
ScanCache::~ScanCache() {