diff options
author | Arun Raghavan <git@arunraghavan.net> | 2016-01-15 16:09:49 +0530 |
---|---|---|
committer | Arun Raghavan <git@arunraghavan.net> | 2016-01-15 16:10:46 +0530 |
commit | f8c69de418f00c33f011d6bc96b821f36e3f3149 (patch) | |
tree | ba65ee1d849d5a18b28d68f6979a2b37210bb008 /src/tests | |
parent | c3c4937b4f3bd83a34864ec0a89b7b9113778da8 (diff) |
build-sys: Use #ifdef with HAVE_FAST_64BIT_OPERATIONS
The define is made conditionally.
Reported by: Kamil Rytarowski <n54@gmx.com>
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/mult-s16-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/mult-s16-test.c b/src/tests/mult-s16-test.c index 845e61c07..7340d8592 100644 --- a/src/tests/mult-s16-test.c +++ b/src/tests/mult-s16-test.c @@ -93,7 +93,7 @@ int main(int argc, char *argv[]) { if (!getenv("MAKE_CHECK")) pa_log_set_level(PA_LOG_DEBUG); -#if HAVE_FAST_64BIT_OPERATIONS +#ifdef HAVE_FAST_64BIT_OPERATIONS pa_log_debug("Detected CPU with fast 64-bit operations."); #else pa_log_debug("Not detected CPU with fast 64-bit operations."); |