prefix by order macros with PA_

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1884 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-09-22 01:16:14 +00:00
parent 668340099c
commit c6b43bf119
8 changed files with 96 additions and 93 deletions

View file

@ -38,7 +38,7 @@
static float swap_float(float a) {
uint32_t *b = (uint32_t*) &a;
*b = UINT32_SWAP(*b);
*b = PA_UINT32_SWAP(*b);
return a;
}