aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/elf/shorts-segment-manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/plugins/elf/shorts-segment-manager.cpp')
-rw-r--r--backends/plugins/elf/shorts-segment-manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/plugins/elf/shorts-segment-manager.cpp b/backends/plugins/elf/shorts-segment-manager.cpp
index d55ea08c73..f444e9e717 100644
--- a/backends/plugins/elf/shorts-segment-manager.cpp
+++ b/backends/plugins/elf/shorts-segment-manager.cpp
@@ -31,7 +31,7 @@
extern char __plugin_hole_start; // Indicates start of hole in program file for shorts
extern char __plugin_hole_end; // Indicates end of hole in program file
-extern char _gp[]; // Value of gp register
+extern char _gp[]; // Value of gp register
DECLARE_SINGLETON(ShortSegmentManager); // For singleton
@@ -59,7 +59,7 @@ ShortSegmentManager::Segment *ShortSegmentManager::newSegment(uint32 size, char
if (lastAddress + size > _shortsEnd) {
warning("elfloader: No space in shorts segment for %x bytes. Last address is %p, max address is %p.",
- size, lastAddress, _shortsEnd);
+ size, lastAddress, _shortsEnd);
return 0;
}