diff options
Diffstat (limited to 'posix/bug-regex1.c')
-rw-r--r-- | posix/bug-regex1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/bug-regex1.c b/posix/bug-regex1.c index 38eb543..4432a90 100644 --- a/posix/bug-regex1.c +++ b/posix/bug-regex1.c @@ -23,7 +23,7 @@ main (void) puts ("in C locale"); setlocale (LC_ALL, "C"); - s = re_compile_pattern ("[anù]*n", 7, ®ex); + s = re_compile_pattern ("[an\371]*n", 7, ®ex); if (s != NULL) { puts ("re_compile_pattern return non-NULL value"); @@ -43,7 +43,7 @@ main (void) puts ("in de_DE.ISO-8859-1 locale"); setlocale (LC_ALL, "de_DE.ISO-8859-1"); - s = re_compile_pattern ("[anù]*n", 7, ®ex); + s = re_compile_pattern ("[an\371]*n", 7, ®ex); if (s != NULL) { puts ("re_compile_pattern return non-NULL value"); |