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.

25 lines
464 B

  1. From 972fb2bbfdb7118551da45c5828c9e74be581fc4 Mon Sep 17 00:00:00 2001
  2. From: Daniel Kamil Kozar <dkk089@gmail.com>
  3. Date: Sat, 15 Dec 2018 21:55:52 +0100
  4. Subject: [PATCH] What about David Bowie's "Heroes"?
  5. ---
  6. utils.c | 7 -------
  7. 1 file changed, 7 deletions(-)
  8. --- a/utils.c
  9. +++ b/utils.c
  10. @@ -87,13 +87,6 @@ trim(char *str)
  11. len--;
  12. }
  13. - if (str[0] == '"' && str[len-1] == '"')
  14. - {
  15. - str[0] = '\0';
  16. - str[len-1] = '\0';
  17. - str++;
  18. - }
  19. -
  20. return str;
  21. }