summaryrefslogtreecommitdiff
path: root/src/pkg/debug/dwarf/unit.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/debug/dwarf/unit.go')
-rw-r--r--src/pkg/debug/dwarf/unit.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/debug/dwarf/unit.go b/src/pkg/debug/dwarf/unit.go
index d4bcf5889..582fd0cf2 100644
--- a/src/pkg/debug/dwarf/unit.go
+++ b/src/pkg/debug/dwarf/unit.go
@@ -29,7 +29,7 @@ func (d *Data) parseUnits() ([]unit, os.Error) {
nunit++;
}
if b.err != nil {
- return nil, b.err;
+ return nil, b.err
}
// Again, this time writing them down.
@@ -46,7 +46,7 @@ func (d *Data) parseUnits() ([]unit, os.Error) {
atable, err := d.parseAbbrev(b.uint32());
if err != nil {
if b.err == nil {
- b.err = err;
+ b.err = err
}
break;
}
@@ -56,7 +56,7 @@ func (d *Data) parseUnits() ([]unit, os.Error) {
u.data = b.bytes(int(n-(2+4+1)));
}
if b.err != nil {
- return nil, b.err;
+ return nil, b.err
}
return units, nil;
}