-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/lib/core/lws_map.c b/lib/core/lws_map.c | ||
index d149d86752..b319d79f49 100644 | ||
--- a/lib/core/lws_map.c | ||
+++ b/lib/core/lws_map.c | ||
@@ -29,11 +29,11 @@ typedef struct lws_map_hashtable { | ||
lws_dll2_owner_t ho; | ||
} lws_map_hashtable_t; | ||
|
||
-typedef struct lws_map { | ||
+struct lws_map { | ||
lws_map_info_t info; | ||
|
||
/* array of info.modulo x lws_map_hashtable_t overallocated */ | ||
-} lws_map_t; | ||
+}; | ||
|
||
typedef struct lws_map_item { | ||
lws_dll2_t list; /* owned by hashtable */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters