rtsp-thread-pool.c: fix clang 10 warning
authorJordan Petridis <jordan@centricular.com>
Mon, 3 Aug 2020 16:34:30 +0000 (19:34 +0300)
committerJordan Petridis <jordan@centricular.com>
Mon, 3 Aug 2020 16:34:30 +0000 (19:34 +0300)
commit3254b992aae9b91cabe7d9860b83b343d7896c83
tree8ff79502fa16d54cf92db553c7b6d487e731c395
parente55515188da3265f5a8a8f4999a7d717b7dbd1ea
rtsp-thread-pool.c: fix clang 10 warning

clang 10 is complaining about incompatible types due to the
glib typesystem.

```
../subprojects/gst-rtsp-server/gst/rtsp-server/rtsp-thread-pool.c:534:10: error: incompatible pointer types passing 'typeof ((((void *)0))) *' (aka 'void **') to parameter of type 'GThreadPool **' (aka 'struct _GThreadPool **') [-Werror,-Wincompatible-pointer-types]
```

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server/-/merge_requests/145>
gst/rtsp-server/rtsp-thread-pool.c