Fixed Xcode warnings

This commit is contained in:
Sam Lantinga
2024-01-13 08:15:41 -08:00
parent 5db6eb7742
commit b6e97d9ff0
21 changed files with 39 additions and 39 deletions

View File

@@ -108,7 +108,7 @@ int SDL_NumSensors(void)
* Return the next available sensor instance ID
* This may be called by drivers from multiple threads, unprotected by any locks
*/
SDL_SensorID SDL_GetNextSensorInstanceID()
SDL_SensorID SDL_GetNextSensorInstanceID(void)
{
return SDL_AtomicIncRef(&SDL_next_sensor_instance_id);
}