mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix broken regerror (typo) and missing message
This commit is contained in:
parent
11f3e33f9b
commit
b6dbdc69b6
1 changed files with 2 additions and 2 deletions
|
@ -22,14 +22,14 @@ static const char messages[] = {
|
|||
"Invalid contents of {}\0"
|
||||
"Invalid character range\0"
|
||||
"Out of memory\0"
|
||||
"XXX\0"
|
||||
"Repetition not preceded by valid expression\0"
|
||||
"\0Unknown error"
|
||||
};
|
||||
|
||||
size_t regerror(int e, const regex_t *preg, char *buf, size_t size)
|
||||
{
|
||||
const char *s;
|
||||
for (s=messages; e && *s; e--, e+=strlen(s)+1);
|
||||
for (s=messages; e && *s; e--, s+=strlen(s)+1);
|
||||
if (!*s) s++;
|
||||
return 1+snprintf(buf, size, "%s", s);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue