X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3_afh.c;h=f5fc7113d14bed295f862de00f5d5c093941d47d;hp=fe174ea89276dc4298ed9c86b7d0c60ee6eb0624;hb=847cf62ae6a5df96af143f21cdf9b36f4ffdff70;hpb=102f171a26add0f0e06f22eeace58047e7f0d956 diff --git a/mp3_afh.c b/mp3_afh.c index fe174ea8..f5fc7113 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -163,7 +163,7 @@ static void write_info_str(struct afh_info *afhi) static char *unpad(char *string) { char *pos = string + strlen(string) - 1; - while (isspace(pos[0])) + while (para_isspace(pos[0])) (pos--)[0] = 0; return string; }