Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Maytha8/glibc
  • vimerbf-guest/glibc
  • schopin/glibc
  • yumeyao/glibc
  • carlespina/po-debconf-manager-glibc
  • Claudia/glibc-widevine
  • andrewsh/glibc
  • jscott/glibc
  • bluca/glibc
  • gioele/glibc
  • rouca/glibc
  • sven/glibc
  • josch/glibc
  • cjwatson/glibc
  • fw/glibc
  • rbalint/glibc
  • bsd-team/glibc-packaging
  • glibc-team/glibc
  • bigon/glibc
  • ahrex-guest/glibc
  • friki/glibc
21 results
Show changes
......@@ -42,11 +42,13 @@ diff --git a/stdio-common/tst-sprintf-errno.c b/stdio-common/tst-sprintf-errno.c
index ca1214cde6..91b1f142fb 100644
--- a/stdio-common/tst-sprintf-errno.c
+++ b/stdio-common/tst-sprintf-errno.c
@@ -50,7 +50,7 @@ do_test (void)
@@ -50,8 +50,8 @@ do_test (void)
errno = -1;
#ifdef __GNU__
TEST_COMPARE (sprintf (buf, "%m"), 35);
- TEST_COMPARE (sprintf (buf, "%m"), 35);
- TEST_COMPARE_STRING (buf, "Error in unknown error system: : -1");
+ TEST_COMPARE (sprintf (buf, "%m"), 39);
+ TEST_COMPARE_STRING (buf, "Error in unknown error system: FFFFFFFF");
#else
TEST_COMPARE (sprintf (buf, "%m"), 16);
......