diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-04-20 14:16:56 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-04-20 10:56:03 +0000 |
commit | 532bd4ec384b8e5764d97a62e5bd01fdbae6bd7a (patch) | |
tree | eb30792d895297559a01d53b6d146a6eba362c26 | |
parent | 76fda1def3d1baea3b01ae697687ff478d2d1b42 (diff) | |
download | edk2-532bd4ec384b8e5764d97a62e5bd01fdbae6bd7a.tar.gz |
CryptoPkg/Crt: fix strcpy build on older VS compilers
Drop 'restrict' keyword which older visual studio compiler
versions complain about.
Fixes: fab6285a73c4 ("CryptoPkg/CrtLibSupport: fix strcpy")
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c | 4 | ||||
-rw-r--r-- | CryptoPkg/Library/Include/CrtLibSupport.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c index 6fcbe5885e..c1fc33538f 100644 --- a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c +++ b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c @@ -267,8 +267,8 @@ strcspn ( char *
strcpy (
- char *restrict strDest,
- const char *strSource
+ char *strDest,
+ const char *strSource
)
{
AsciiStrCpyS (strDest, MAX_STRING_SIZE, strSource);
diff --git a/CryptoPkg/Library/Include/CrtLibSupport.h b/CryptoPkg/Library/Include/CrtLibSupport.h index bdc2654b6e..e49060124f 100644 --- a/CryptoPkg/Library/Include/CrtLibSupport.h +++ b/CryptoPkg/Library/Include/CrtLibSupport.h @@ -397,8 +397,8 @@ inet_pton ( char *
strcpy (
- char *restrict strDest,
- const char *strSource
+ char *strDest,
+ const char *strSource
);
//
|