summaryrefslogtreecommitdiffstats
path: root/src/tests/resampler-test.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-09-22 01:16:14 +0000
committerLennart Poettering <lennart@poettering.net>2007-09-22 01:16:14 +0000
commitc6b43bf119d59b05cc270027080bd616b560db1b (patch)
tree26c80bd64c7167a1c4430522bc030aa730ffa9dc /src/tests/resampler-test.c
parent668340099c1ebc6d3d28bf04dce5249ee28b223a (diff)
prefix by order macros with PA_
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1884 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/tests/resampler-test.c')
-rw-r--r--src/tests/resampler-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/resampler-test.c b/src/tests/resampler-test.c
index e2cf1d8a..3b4a7386 100644
--- a/src/tests/resampler-test.c
+++ b/src/tests/resampler-test.c
@@ -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;
}