diff --git a/CHANGELOG.md b/CHANGELOG.md index c22c7f232b..f322c46d9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +**Fixes**: + +- PS5/Switch compilation regression (`sentry__process_spawn` signature change) ([#1436](https://github.com/getsentry/sentry-native/pull/1436)) + ## 0.12.0 **Breaking changes**: diff --git a/src/process/sentry_process_none.c b/src/process/sentry_process_none.c index c6c3f2d4c4..8f24d4b8c0 100644 --- a/src/process/sentry_process_none.c +++ b/src/process/sentry_process_none.c @@ -3,7 +3,7 @@ #include "sentry_core.h" void -sentry__process_spawn(const sentry_path_t *UNUSED(executable), - const sentry_pathchar_t *UNUSED(arg0), ...) +sentry__process_spawn( + const sentry_path_t *UNUSED(executable), const char *UNUSED(arg0), ...) { }