aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/elf
diff options
context:
space:
mode:
authorJohannes Schickel2010-12-22 15:07:14 +0000
committerJohannes Schickel2010-12-22 15:07:14 +0000
commit48ce90419f48fe1c3e8f3f0336aae3445e850ea9 (patch)
tree4299de4aeab02847b891b0d995ac2a5386629dec /backends/plugins/elf
parent6817d4b300f272f7ae51b8e3f5ab245f56d72780 (diff)
downloadscummvm-rg350-48ce90419f48fe1c3e8f3f0336aae3445e850ea9.tar.gz
scummvm-rg350-48ce90419f48fe1c3e8f3f0336aae3445e850ea9.tar.bz2
scummvm-rg350-48ce90419f48fe1c3e8f3f0336aae3445e850ea9.zip
PLUGINS: Fix ELFMemoryManager::pluginAllocate signature.
svn-id: r55010
Diffstat (limited to 'backends/plugins/elf')
-rw-r--r--backends/plugins/elf/memory-manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/plugins/elf/memory-manager.h b/backends/plugins/elf/memory-manager.h
index 5121ed163d..81f8ea9a3e 100644
--- a/backends/plugins/elf/memory-manager.h
+++ b/backends/plugins/elf/memory-manager.h
@@ -46,7 +46,7 @@ public:
void allocateHeap();
void *pluginAllocate(size_t size);
- void *pluginAllocate(uint32 align, uint32 size);
+ void *pluginAllocate(size_t align, size_t size);
void pluginDeallocate(void *ptr);
private: