Skip to content

Commit

Permalink
Fixed linter error / broken syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
skx committed May 12, 2024
1 parent b2511c1 commit 6d08114
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpm/cpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func New(logger *slog.Logger) *CPM {
sys[13] = CPMHandler{
Desc: "DRV_ALLRESET",
Handler: SysCallDriveAllReset,
Fake: true
Fake: true,
}
sys[14] = CPMHandler{
Desc: "DRV_SET",
Expand Down Expand Up @@ -265,7 +265,7 @@ func New(logger *slog.Logger) *CPM {
sys[24] = CPMHandler{
Desc: "DRV_LOGINVEC",
Handler: SysCallLoginVec,
Fake: true,
Fake: true,
}
sys[25] = CPMHandler{
Desc: "DRV_GET",
Expand All @@ -288,7 +288,7 @@ func New(logger *slog.Logger) *CPM {
sys[29] = CPMHandler{
Desc: "DRV_ROVEC",
Handler: SysCallDriveROVec,
Fake: true,
Fake: true,
}
sys[30] = CPMHandler{
Desc: "F_ATTRIB",
Expand Down

0 comments on commit 6d08114

Please sign in to comment.