From c5b39347673e257cff09346cc11764a83970c8bc Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 16 Feb 2022 11:38:32 +0100 Subject: [PATCH] cpu/native: improve `getpid()` stub message --- cpu/native/syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/syscalls.c b/cpu/native/syscalls.c index 3cee6cb073..bb60137ef6 100644 --- a/cpu/native/syscalls.c +++ b/cpu/native/syscalls.c @@ -470,7 +470,7 @@ void errx(int eval, const char *fmt, ...) int getpid(void) { - warnx("not implemented"); + warnx("getpid(): not implemented"); return -1; }