|
From: <sv...@va...> - 2007-08-27 22:18:58
|
Author: njn
Date: 2007-08-27 23:18:58 +0100 (Mon, 27 Aug 2007)
New Revision: 6785
Log:
fixed a couple of minor things
Modified:
trunk/lackey/lk_main.c
trunk/massif/hp2ps/Main.c
Modified: trunk/lackey/lk_main.c
===================================================================
--- trunk/lackey/lk_main.c 2007-08-27 11:50:39 UTC (rev 6784)
+++ trunk/lackey/lk_main.c 2007-08-27 22:18:58 UTC (rev 6785)
@@ -319,9 +319,9 @@
}
}
-static HChar* nameOfTypeIndex ( IRType ty )
+static HChar* nameOfTypeIndex ( Int i )
{
- switch (ty) {
+ switch (i) {
case 0: return "I1"; break;
case 1: return "I8"; break;
case 2: return "I16"; break;
Modified: trunk/massif/hp2ps/Main.c
===================================================================
--- trunk/massif/hp2ps/Main.c 2007-08-27 11:50:39 UTC (rev 6784)
+++ trunk/massif/hp2ps/Main.c 2007-08-27 22:18:58 UTC (rev 6785)
@@ -90,6 +90,7 @@
case '-':
iflag = -1;
case '+':
+ break;
default:
iflag = 1;
}
|