Remove pa_bool_t and replace it with bool
[platform/upstream/pulseaudio.git] / src / modules / bluetooth / module-bluez4-device.c
index 6b775b7..1ece721 100644 (file)
@@ -111,7 +111,7 @@ struct a2dp_info {
     size_t codesize, frame_length;       /* SBC Codesize, frame_length. We simply cache those values here */
 
 #ifdef BLUETOOTH_APTX_SUPPORT
-    pa_bool_t aptx_initialized;        /* Keep track if the encoder is initialized */
+    bool aptx_initialized;             /* Keep track if the encoder is initialized */
     void *aptx;                        /* Codec data */
 #endif
     void* buffer;                        /* Codec transfer buffer */
@@ -221,7 +221,7 @@ int (*aptx_encode)(void* _state, void* _pcmL, void* _pcmR, void* _buffer);
 const char *aptx_new_name = "NewAptxEnc";
 const char *aptx_encode_name = "aptxbtenc_encodestereo";
 
-static pa_bool_t pa_load_aptx_sym(void *handle )
+static bool pa_load_aptx_sym(void *handle )
 {
        if (!handle)
                return FALSE;