mpg123-1.32.4

This commit is contained in:
Ozkan Sezer
2024-01-10 20:40:40 +03:00
parent 530d2f6056
commit a06847ca33
142 changed files with 1370 additions and 1487 deletions

View File

@@ -1,6 +1,6 @@
#include "compat.h"
#include "../compat/compat.h"
#include <mpg123.h>
#include "debug.h"
#include "../common/debug.h"
int test_whence(const char* path, int scan_before)
{
@@ -27,7 +27,7 @@ int test_whence(const char* path, int scan_before)
mpg123_close(mh);
mpg123_delete(mh);
fprintf(stdout, "length %"OFF_P" vs. pos %"OFF_P"\n", length, pos);
fprintf(stdout, "length %" PRIiMAX " vs. pos %" PRIiMAX "\n", (intmax_t)length, (intmax_t)pos);
return (pos == length) ? 0 : -1;
}