|
From: <sv...@va...> - 2013-01-15 03:26:08
|
florian 2013-01-15 03:25:17 +0000 (Tue, 15 Jan 2013)
New Revision: 2634
Log:
Remove const qualifier from function return type.
It's not meaningful.
Patch Guy Harris (gu...@al...). Part of fixing BZ 312980.
Modified files:
trunk/priv/guest_amd64_toIR.c
Modified: trunk/priv/guest_amd64_toIR.c (+1 -1)
===================================================================
--- trunk/priv/guest_amd64_toIR.c 2013-01-13 02:34:28 +00:00 (rev 2633)
+++ trunk/priv/guest_amd64_toIR.c 2013-01-15 03:25:17 +00:00 (rev 2634)
@@ -2152,7 +2152,7 @@
}
}
-static const HChar nameISize ( Int size )
+static HChar nameISize ( Int size )
{
switch (size) {
case 8: return 'q';
|