mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

  1. warn symbol is part of libc.o, then i have to look for a
  2. different name
  3. Alejandro
  4. --- ./src/complain.c.orig 2004-02-11 19:14:26.000000000 -0300
  5. +++ ./src/complain.c 2004-02-11 19:16:19.000000000 -0300
  6. @@ -87,7 +87,7 @@
  7. }
  8. void
  9. -warn (const char *message, ...)
  10. +warn_this (const char *message, ...)
  11. {
  12. va_list args;
  13. --- ./src/complain.h.orig 2004-02-11 19:14:33.000000000 -0300
  14. +++ ./src/complain.h 2004-02-11 19:16:32.000000000 -0300
  15. @@ -27,7 +27,7 @@
  16. /* Informative messages, but we proceed. */
  17. -void warn (char const *format, ...)
  18. +void warn_this (char const *format, ...)
  19. __attribute__ ((__format__ (__printf__, 1, 2)));
  20. void warn_at (location loc, char const *format, ...)
  21. --- ./src/files.c.orig 2004-02-11 19:14:43.000000000 -0300
  22. +++ ./src/files.c 2004-02-11 19:16:41.000000000 -0300
  23. @@ -333,5 +333,5 @@
  24. for (j = 0; j < names; j++)
  25. for (i = 0; i < j; i++)
  26. if (strcmp (name[i], name[j]) == 0)
  27. - warn (_("conflicting outputs to file %s"), quote (name[i]));
  28. + warn_this (_("conflicting outputs to file %s"), quote (name[i]));
  29. }