mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
Make cmake module search case-insensitive.
This is needed to make things like "-f Win32" work, and matches the non-cmake behavior. [#276 state:resolved]
This commit is contained in:
parent
1910e91479
commit
6818957d07
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ yasm_register_module(yasm_module_type type, const char *keyword, void *data)
|
|||
assert(type < sizeof(loaded_modules));
|
||||
|
||||
if (!loaded_modules[type])
|
||||
loaded_modules[type] = HAMT_create(0, yasm_internal_error_);
|
||||
loaded_modules[type] = HAMT_create(1, yasm_internal_error_);
|
||||
|
||||
HAMT_insert(loaded_modules[type], keyword, data, &replace,
|
||||
load_module_destroy);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue