Skip to content

Commit

Permalink
Merge remote-tracking branch 'mpg123/master' into master-with-github-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mpg123 GitHub bot committed Oct 2, 2023
2 parents 74846da + 1ad5cbd commit 28b6007
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/libmpg123/lfs_wrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
#include <sys/stat.h>
#include <fcntl.h>

// A paranoid check that someone did not define a wrong SIZEOF_OFF_T at configure time.
typedef unsigned char MPG123_STATIC_ASSERT[(SIZEOF_OFF_T == sizeof(off_t)) ? 1 : -1];

#include "debug.h"

// We do not want to expose this publicly, but it is cleaner to have it also defined
Expand Down
2 changes: 1 addition & 1 deletion src/libmpg123/mpg123.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
#define MPG123_API_VERSION 48
/** library patch level at client build time */
#define MPG123_PATCHLEVEL 0
#define MPG123_PATCHLEVEL 1

#ifndef MPG123_EXPORT
/** Defines needed for MS Visual Studio(tm) DLL builds.
Expand Down
2 changes: 1 addition & 1 deletion src/libsyn123/syn123.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
#define SYN123_API_VERSION 2
/** library patch level at client build time */
#define SYN123_PATCHLEVEL 1
#define SYN123_PATCHLEVEL 2

#ifndef MPG123_EXPORT
/** Defines needed for MS Visual Studio(tm) DLL builds.
Expand Down

0 comments on commit 28b6007

Please sign in to comment.