The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

i/client: Fix return type incompatibility on Windows

authored by

Ryan Pavlik and committed by
Jakob Bornecrantz
8603e5d6 d1657625

+3 -2
+3 -2
src/xrt/ipc/client/ipc_client_instance.c
··· 7 7 * @ingroup ipc_client 8 8 */ 9 9 10 + #include "xrt/xrt_results.h" 10 11 #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) 11 12 #define _CRT_SECURE_NO_WARNINGS 12 13 #endif ··· 376 377 return XRT_SUCCESS; 377 378 } 378 379 379 - static int 380 + static xrt_result_t 380 381 ipc_client_instance_get_prober(struct xrt_instance *xinst, struct xrt_prober **out_xp) 381 382 { 382 383 *out_xp = NULL; 383 384 384 - return -1; 385 + return XRT_ERROR_PROBER_NOT_SUPPORTED; 385 386 } 386 387 387 388 static void