commit | c6f2f884b4789c4000ffb30a85646f088da102b1 | [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 | c101a06fef493ab3f226ae5dcdb601804acb7213 | |
parent | 10525ad31383e33c6e2dcdfcc9180ada55fa3b50 [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__)