diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-12 16:15:59 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-12 16:15:59 -0800 |
commit | cd52592332ec2bc12a6ede510b69b536c91bc63d (patch) | |
tree | b62cf4593477ae5ae513d84c03f723fc7eec8f4d /include/libc-symbols.h | |
parent | a445af0bc722d620afed7683cd320c0e4c7c6059 (diff) | |
download | glibc-cd52592332ec2bc12a6ede510b69b536c91bc63d.tar.gz glibc-cd52592332ec2bc12a6ede510b69b536c91bc63d.tar.xz glibc-cd52592332ec2bc12a6ede510b69b536c91bc63d.zip |
Remove redunant "warning: " prefix from stub warnings.
Diffstat (limited to 'include/libc-symbols.h')
-rw-r--r-- | include/libc-symbols.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 0608320afc..f043ce0850 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -228,8 +228,7 @@ /* A canned warning for sysdeps/stub functions. */ #define stub_warning(name) \ __make_section_unallocated (".gnu.glibc-stub." #name) \ - link_warning (name, \ - "warning: " #name " is not implemented and will always fail") + link_warning (name, #name " is not implemented and will always fail") /* Warning for linking functions calling dlopen into static binaries. */ #ifdef SHARED |