Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
Signed-off-by: Brandon Yates <[email protected]>
  • Loading branch information
bmyates committed Dec 17, 2021
1 parent 7da12ad commit 18c5b4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Level zero loader changelog


## v1.7.2
## v1.7.3
* Addition of new Loader API to perform handle translations. See doc/loader_api.md
* Add Ability to read optional Level Zero Registry Key Containing the Level Zero Loader libraries on windows
* Update L0 headers to 1.3.7 Spec which includes:
Expand Down
2 changes: 1 addition & 1 deletion source/inc/ze_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# define GET_FUNCTION_PTR(LIB, FUNC_NAME) dlsym(LIB, FUNC_NAME)
#endif

inline std::string create_library_path(char *name, const char *path){
inline std::string create_library_path(const char *name, const char *path){
std::string library_path;
if (path && (strcmp("", path) != 0)) {
library_path.assign(path);
Expand Down

0 comments on commit 18c5b4a

Please sign in to comment.