Compilation problem caused by conflicting typedefs for uint32_t
(unsigned long vs. unsigned int).
This commit is contained in:
parent
10525ad313
commit
c6f2f884b4
|
@ -28,7 +28,9 @@
|
|||
#if defined(linux)
|
||||
#include <linux/soundcard.h>
|
||||
|
||||
#ifndef HAVE_STDINT_H
|
||||
typedef unsigned long uint32_t;
|
||||
#endif
|
||||
|
||||
#elif defined(__FreeBSD__)
|
||||
#include <machine/soundcard.h>
|
||||
|
|
|
@ -34,7 +34,9 @@
|
|||
|
||||
#if defined(linux)
|
||||
|
||||
#ifndef HAVE_STDINT_H
|
||||
typedef unsigned long uint32_t;
|
||||
#endif
|
||||
|
||||
#elif defined(__FreeBSD__)
|
||||
|
||||
|
|
Loading…
Reference in New Issue