Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Jan 31, 2025
1 parent 9f42a58 commit 4ee78cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion c-object.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
(defun pointer->object (pointer &optional errorp)
(let ((address (etypecase pointer
(cffi:foreign-pointer (cffi:pointer-address pointer))
(integer pointer))))
((unsigned-byte 64) pointer))))
(or (gethash address *c-object-table*)
(when errorp
(error "No object associated with address ~x" address)))))
Expand Down
1 change: 1 addition & 0 deletions segments/virtual.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
(start segment)))

(define-std-callback virtual-mix ((segment :pointer))
(declare (optimize speed))
(with-fetched-object (segment)
(mix segment)))

Expand Down

0 comments on commit 4ee78cc

Please sign in to comment.