From: Samuel Hernandez Date: Sun, 11 Oct 2020 18:22:31 +0000 (-0400) Subject: rcutorture/nolibc: Fix a typo in header file X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6c5b9de2c63b2f513a580c6c80d455350012e99b;p=linux.git rcutorture/nolibc: Fix a typo in header file This fixes a typo. Before this, the AT_FDCWD macro would be defined regardless of whether or not it's been defined before. Signed-off-by: Samuel Hernandez Signed-off-by: Willy Tarreau Signed-off-by: Paul E. McKenney --- diff --git a/tools/include/nolibc/nolibc.h b/tools/include/nolibc/nolibc.h index 2551e9b71167b..d6d2623c99ad0 100644 --- a/tools/include/nolibc/nolibc.h +++ b/tools/include/nolibc/nolibc.h @@ -231,7 +231,7 @@ struct rusage { #define DT_SOCK 12 /* all the *at functions */ -#ifndef AT_FDWCD +#ifndef AT_FDCWD #define AT_FDCWD -100 #endif