[Git][cmucl/cmucl][master] 2 commits: Fix #329: Fix compiler warnings in os.lisp.
Raymond Toy pushed to branch master at cmucl / cmucl Commits: 258273ff by Raymond Toy at 2024-06-17T03:42:56+00:00 Fix #329: Fix compiler warnings in os.lisp. - - - - - 7d568688 by Raymond Toy at 2024-06-17T03:43:15+00:00 Merge branch 'issue-329-undef-var-get-page-size' into 'master' Fix #329: Fix compiler warnings in os.lisp. Closes #329 See merge request cmucl/cmucl!230 - - - - - 1 changed file: - src/code/os.lisp Changes: ===================================== src/code/os.lisp ===================================== @@ -29,7 +29,7 @@ (alien:extern-alien "os_get_page_size" (function c-call:long))))) (when (minusp maybe-page-size) - (error (intl:gettext "get-page-size failed: ~A") (get-unix-error-msg err))) + (error (intl:gettext "get-page-size failed: ~A") (unix:get-unix-error-msg))) maybe-page-size)) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/e23fc502bf09197c1b14d1d... -- This project does not include diff previews in email notifications. View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/e23fc502bf09197c1b14d1d... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)