forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pmdk] Remove non-ascii charactor (microsoft#9094)
- Loading branch information
Showing
3 changed files
with
22 additions
and
11 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: pmdk | ||
Version: 1.7 | ||
Version: 1.7-1 | ||
Homepage: https://github.com/pmem/pmdk | ||
Description: Persistent Memory Development Kit |
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,17 @@ | ||
diff --git a/src/libpmemobj/critnib.c b/src/libpmemobj/critnib.c | ||
index 41fec79..f201dbd 100644 | ||
--- a/src/libpmemobj/critnib.c | ||
+++ b/src/libpmemobj/critnib.c | ||
@@ -360,9 +360,9 @@ alloc_leaf(struct critnib *__restrict c) | ||
* crinib_insert -- write a key:value pair to the critnib structure | ||
* | ||
* Returns: | ||
- * • 0 on success | ||
- * • EEXIST if such a key already exists | ||
- * • ENOMEM if we're out of memory | ||
+ * 0 on success | ||
+ * EEXIST if such a key already exists | ||
+ * ENOMEM if we're out of memory | ||
* | ||
* Takes a global write lock but doesn't stall any readers. | ||
*/ |