commit | 0d2f498a4cebb428a28fdc54b277ecede5ebc1c7 | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Wed Oct 04 10:23:57 2006 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Wed Oct 04 10:23:57 2006 +0000 |
tree | a6bb0898ce0cf4fdf962e7bcc8681c0bee95266f | |
parent | 1c08bb95b77a25f6f5f47da4f9d3622a5dee7639 [diff] [blame] |
Compilation problem caused by conflicting typedefs for uint32_t (unsigned long vs. unsigned int).
diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index 9716838..eb59c4d 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c
@@ -34,7 +34,9 @@ #if defined(linux) +#ifndef HAVE_STDINT_H typedef unsigned long uint32_t; +#endif #elif defined(__FreeBSD__)