Skip to content

Commit

Permalink
devel/soft-serve: Unbreak on 32-bit platforms
Browse files Browse the repository at this point in the history
Reported by:	pkg-fallout
  • Loading branch information
wahjava committed Jan 20, 2022
1 parent c54c79c commit a38ab8d
Showing 1 changed file with 6 additions and 3 deletions.
@@ -1,9 +1,12 @@
--- vendor/github.com/charmbracelet/bubbletea/cancelreader_bsd.go.orig 2021-12-11 06:31:30 UTC
--- vendor/github.com/charmbracelet/bubbletea/cancelreader_bsd.go.orig 2022-01-07 18:25:29 UTC
+++ vendor/github.com/charmbracelet/bubbletea/cancelreader_bsd.go
@@ -134,9 +134,9 @@ func (r *kqueueCancelReader) wait() error {
@@ -134,11 +134,11 @@ func (r *kqueueCancelReader) wait() error {
break
}

switch events[0].Ident {
- ident := uint64(events[0].Ident)
+ ident := uint32(events[0].Ident)
switch ident {
- case uint64(r.file.Fd()):
+ case uint32(r.file.Fd()):
return nil
Expand Down

0 comments on commit a38ab8d

Please sign in to comment.