Skip to content

Commit

Permalink
Update binexport.go
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Jan 14, 2025
1 parent c57c88c commit 46b2010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/binexport/binexport.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func NewBinExport(path string) (*BinExport, error) {
return nil, fmt.Errorf("failed to unmarshal BinExport2: %w", err)
}
default:
return nil, fmt.Errorf("unsupported file extension: %s", filepath.Ext(path))
return nil, fmt.Errorf("unsupported file extension: %s (expected .BinExport or .i64)", filepath.Ext(path))
}
return &b, nil
}
Expand Down

0 comments on commit 46b2010

Please sign in to comment.