-
Notifications
You must be signed in to change notification settings - Fork 509
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
17 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
permissions: {} | ||
|
||
env: | ||
DAOS_BUILD: 0 | ||
DAOS_BUILD: 1 | ||
DAOS_PATH: /opt/daos/ | ||
|
||
jobs: | ||
|
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,13 @@ | ||
diff --git a/src/include/daos_types.h b/src/include/daos_types.h | ||
index 6db21423ce..0b2d16834b 100644 | ||
--- a/src/include/daos_types.h | ||
+++ b/src/include/daos_types.h | ||
@@ -240,7 +240,7 @@ static inline bool | ||
daos_is_valid_uuid_string(const char *uuid) | ||
{ | ||
const char *p; | ||
- int len = DAOS_UUID_STR_SIZE - 1; /* Not include the terminated '\0' */ | ||
+ size_t len = DAOS_UUID_STR_SIZE - 1; /* Not include the terminated '\0' */ | ||
int i; | ||
|
||
if (strnlen(uuid, len) != len) |
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