[Git][cmucl/cmucl][issue-394-getcwd-retry-buffer-size] Just remove extraneous whitespace at the end of some lines.

Raymond Toy pushed to branch issue-394-getcwd-retry-buffer-size at cmucl / cmucl Commits: b4da8b99 by Raymond Toy at 2025-05-09T06:53:50-07:00 Just remove extraneous whitespace at the end of some lines. - - - - - 1 changed file: - src/lisp/os-common.c Changes: ===================================== src/lisp/os-common.c ===================================== @@ -948,7 +948,7 @@ os_getcwd(void) char *result = NULL; result = getcwd(buffer, size); - + while (result == NULL && errno == ERANGE) { /* * Buffer is too small, double its size and try again. @@ -969,5 +969,3 @@ os_getcwd(void) return result; } - - View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/b4da8b99855d0933e12c1335... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/b4da8b99855d0933e12c1335... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)