Kaydet (Commit) c6f2f884 authored tarafından Armin Rigo's avatar Armin Rigo

Compilation problem caused by conflicting typedefs for uint32_t

(unsigned long vs. unsigned int).
üst 10525ad3
......@@ -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__)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment