This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[libstdc++,PATCH] src/c++11/snprintf_lite.cc - update bug reporting URL


I'm a little surprised how many different places in GCC carry the
bug reporting URL (this must make it hard for distributors to find
and patch all of them) and why there is this one in the depths of 
a sole source file in libstdc++, but at least it was easy enough to
fix.

Applied.

Gerald

2017-02-08  Gerald Pfeifer  <gerald@pfeifer.com>
 
	* src/c++11/snprintf_lite.cc (__err): Update bug reporting URL.
 
Index: src/c++11/snprintf_lite.cc
===================================================================
--- src/c++11/snprintf_lite.cc	(revision 245267)
+++ src/c++11/snprintf_lite.cc	(working copy)
@@ -52,7 +52,7 @@
     const size_t __len = __bufend - __buf + 1;
 
     const char __err[] = "not enough space for format expansion "
-      "(Please submit full bug report at http://gcc.gnu.org/bugs.html):\n    ";
+      "(Please submit full bug report at http://gcc.gnu.org/bugs/):\n    ";
     const size_t __errlen = sizeof(__err) - 1;
 
     char *const __e


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]