summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/os.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/include/os.h')
-rw-r--r--src/third_party/wiredtiger/src/include/os.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/src/include/os.h b/src/third_party/wiredtiger/src/include/os.h
index edb59b0f521..518b124f547 100644
--- a/src/third_party/wiredtiger/src/include/os.h
+++ b/src/third_party/wiredtiger/src/include/os.h
@@ -77,8 +77,8 @@ typedef enum {
struct __wt_fh {
char *name; /* File name */
uint64_t name_hash; /* Hash of name */
- SLIST_ENTRY(__wt_fh) l; /* List of open handles */
- SLIST_ENTRY(__wt_fh) hashl; /* Hashed list of handles */
+ TAILQ_ENTRY(__wt_fh) q; /* List of open handles */
+ TAILQ_ENTRY(__wt_fh) hashq; /* Hashed list of handles */
u_int ref; /* Reference count */