mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 14:12:26 +00:00
86c2982568
This refreshes the line numbers, removes any fuzz (which would make any future forward ports easier) and standardizes the patch/file headers (which makes them easier to read). Signed-off-by: Alexey Neyman <stilor@att.net>
18 lines
433 B
Diff
18 lines
433 B
Diff
---
|
|
sysdeps/linux-gnu/mips/plt.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/sysdeps/linux-gnu/mips/plt.c
|
|
+++ b/sysdeps/linux-gnu/mips/plt.c
|
|
@@ -356,8 +356,8 @@
|
|
|
|
name = strdup(a_name);
|
|
if (name == NULL) {
|
|
- fprintf(stderr, "%s: failed %s(%#llx): %s\n", __func__,
|
|
- name, addr, strerror(errno));
|
|
+ fprintf(stderr, "%s: failed (%#llx): %s\n", __func__,
|
|
+ addr, strerror(errno));
|
|
goto fail;
|
|
}
|
|
|