mirror of
https://github.com/apache/httpd.git
synced 2025-08-03 16:33:59 +00:00
util: Follow up to r1902728 and r1902731: static/AP_THREAD_LOCAL order matters.
gcc seems to want "static __thread" instead of "__thread static".. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -301,7 +301,7 @@ struct match_thread_state {
|
||||
apr_pool_t *pool;
|
||||
};
|
||||
|
||||
AP_THREAD_LOCAL static struct match_thread_state *thread_state;
|
||||
static AP_THREAD_LOCAL struct match_thread_state *thread_state;
|
||||
#endif
|
||||
|
||||
struct match_data_state {
|
||||
|
Reference in New Issue
Block a user