]> code.delx.au - pulseaudio/blobdiff - src/modules/rtp/rtsp_client.c
Remove pa_bool_t and replace it with bool.
[pulseaudio] / src / modules / rtp / rtsp_client.c
index 50724391d04c8e8881fe9762d3ffa3fcd12ae19b..6edb0e4760986a54785b96bac907de82ebb03e6c 100644 (file)
@@ -329,7 +329,7 @@ int pa_rtsp_connect(pa_rtsp_client *c) {
     c->session = NULL;
 
     pa_log_debug("Attempting to connect to server '%s:%d'", c->hostname, c->port);
-    if (!(c->sc = pa_socket_client_new_string(c->mainloop, TRUE, c->hostname, c->port))) {
+    if (!(c->sc = pa_socket_client_new_string(c->mainloop, true, c->hostname, c->port))) {
         pa_log("failed to connect to server '%s:%d'", c->hostname, c->port);
         return -1;
     }