Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/novmm/machine/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var PciCapabilityMismatch = errors.New("Capability mismatch!")
// UART errors.
var UartUnknown = errors.New("Unknown COM port.")

// Driver errors.
// DriverUnknown: Driver errors.
func DriverUnknown(name string) error {
return errors.New(fmt.Sprintf("Unknown driver: %s", name))
}
Expand Down
2 changes: 1 addition & 1 deletion src/novmm/plan9/unpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"log"
)

// Creates a Fcall value from the on-the-wire representation. If
// Unpack: Creates a Fcall value from the on-the-wire representation. If
// dotu is true, reads 9P2000.u messages. Returns the unpacked message,
// error and how many bytes from the buffer were used by the message.
func Unpack(
Expand Down