diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-08-28 14:58:46 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-09-04 15:46:31 -0600 |
| commit | c9cf52652af2b7f6eefc2d2d23435814fb3e388a (patch) | |
| tree | edc9c5efd779090ee753be69ba832ff9bbaf1d93 /loader/loader.c | |
| parent | d42181fd35f4964c14c9fb87506aa07c7f263765 (diff) | |
| download | usermoji-c9cf52652af2b7f6eefc2d2d23435814fb3e388a.tar.xz | |
loader: Fix Windows build for alloc stuff
Diffstat (limited to 'loader/loader.c')
| -rw-r--r-- | loader/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c index 13e3d022..daf428ac 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -1659,7 +1659,7 @@ static void loader_get_manifest_files(const struct loader_instance *inst, } strcpy(loc, location); #if defined (_WIN32) - loc = loader_get_registry_files(loc); + loc = loader_get_registry_files(inst, loc); if (loc == NULL) { loader_log(VK_DBG_REPORT_ERROR_BIT, 0, "Registry lookup failed can't get manifest files"); return; |
