[Git][cmucl/cmucl][issue-120-software-type-in-c] Just remove some trailing whitespace

Raymond Toy pushed to branch issue-120-software-type-in-c at cmucl / cmucl Commits: d8f99abf by Raymond Toy at 2023-03-09T06:50:32-08:00 Just remove some trailing whitespace - - - - - 1 changed file: - src/lisp/os-common.c Changes: ===================================== src/lisp/os-common.c ===================================== @@ -814,7 +814,7 @@ os_get_locale_codeset() #define UNAME_RELEASE_AND_VERSION #else #undef UNAME_RELEASE_AND_VERSION -#endif +#endif char* os_software_version() @@ -822,7 +822,7 @@ os_software_version() int status; struct utsname uts; char *version = NULL; - + status = uname(&uts); if (status == 0) { int version_length; @@ -836,7 +836,7 @@ os_software_version() } #else version = strdup(uts.version); -#endif +#endif } return version; View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d8f99abf569c7ae830abeb2b... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d8f99abf569c7ae830abeb2b... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)