]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mp3_afh.c
Turn PARA_STRERROR into an inline function.
[paraslash.git] / mp3_afh.c
index fe174ea89276dc4298ed9c86b7d0c60ee6eb0624..a6a421a640195cee964e2b33c908e05934a04243 100644 (file)
--- 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;
 }
@@ -395,7 +395,7 @@ static int mp3_read_info(unsigned char *map, size_t numbytes,
        PARA_DEBUG_LOG("eof timeout: %lu\n", tv2ms(&afhi->eof_tv));
        return 1;
 err_out:
-       PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
+       PARA_ERROR_LOG("%s\n", para_strerror(-ret));
        free(afhi->chunk_table);
        return ret;
 }