mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
fix __x86_64__ check
https://github.com/warmcat/libwebsockets/issues/574
This commit is contained in:
parent
9ec76d4b72
commit
8fdff1053c
1 changed files with 1 additions and 1 deletions
|
@ -2874,7 +2874,7 @@ lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs);
|
|||
#define u_int64_t unsigned long long
|
||||
#endif
|
||||
|
||||
#if __x86_64__
|
||||
#if defined(__x86_64__)
|
||||
#define _LWS_PAD_SIZE 16 /* Intel recommended for best performance */
|
||||
#else
|
||||
#define _LWS_PAD_SIZE LWS_SIZEOFPTR /* Size of a pointer on the target arch */
|
||||
|
|
Loading…
Add table
Reference in a new issue