Changeset fdfb24e in mainline for common/str_error.c
- Timestamp:
- 2023-10-27T17:53:21Z (19 months ago)
- Branches:
- master, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 55c5cb05
- Parents:
- 44e8541
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:38:24)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:53:21)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
common/str_error.c
r44e8541 rfdfb24e 28 28 */ 29 29 30 #include <str_error.h> 31 30 32 #include <errno.h> 31 #include <str.h> 33 #include <stddef.h> 34 32 35 33 36 /* … … 64 67 /* 65 68 * Just a dumb linear search. 66 * There too few entries to warrant anything smarter.69 * There are too few entries to warrant anything smarter. 67 70 */ 68 71 … … 86 89 } 87 90 88 return "(unknown)";91 return NULL; 89 92 } 90 93 … … 97 100 } 98 101 99 return "Unknown error code";102 return NULL; 100 103 }
Note:
See TracChangeset
for help on using the changeset viewer.