aboutsummaryrefslogtreecommitdiff
path: root/src/libmach/symdwarf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmach/symdwarf.c')
-rw-r--r--src/libmach/symdwarf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmach/symdwarf.c b/src/libmach/symdwarf.c
index c29f287f..eeafa8dc 100644
--- a/src/libmach/symdwarf.c
+++ b/src/libmach/symdwarf.c
@@ -323,11 +323,11 @@ dwarftosym(Fhdr *fp, Dwarf *d, DwarfSym *ds, Symbol *s, int infn)
}
static int
-dwarfeval(Dwarf *d, Map *map, Regs *regs, ulong cfa, int rno, DwarfExpr e, uvlong *u)
+dwarfeval(Dwarf *d, Map *map, Regs *regs, ulong cfa, int rno, DwarfExpr e, ulong *u)
{
int i;
u32int u4;
- uvlong uu;
+ ulong uu;
switch(e.type){
case RuleUndef:
@@ -400,7 +400,7 @@ _dwarfunwind(Fhdr *fhdr, Map *map, Regs *regs, ulong *next)
{
char *name;
int i, j;
- uvlong cfa, pc, u;
+ ulong cfa, pc, u;
Dwarf *d;
DwarfExpr *e, epc, ecfa;