We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286d551 commit a810514Copy full SHA for a810514
1 file changed
wolfssl/wolfcrypt/wc_port.h
@@ -743,10 +743,10 @@ WOLFSSL_ABI WOLFSSL_API int wolfCrypt_Cleanup(void);
743
#endif
744
745
#ifndef MAX_FILENAME_SZ
746
- #define MAX_FILENAME_SZ 260 + 1 /* max file name length */
+ #define MAX_FILENAME_SZ (260 + 1) /* max file name length */
747
748
#ifndef MAX_PATH
749
- #define MAX_PATH 260 + 1
+ #define MAX_PATH (260 + 1)
750
751
752
WOLFSSL_LOCAL int wc_FileLoad(const char* fname, unsigned char** buf,
0 commit comments