various: fix indentation

This commit is contained in:
nanahi 2024-03-19 22:23:23 -04:00 committed by Kacper Michajłow
parent f11002cef3
commit 9f5edd4eed
24 changed files with 353 additions and 353 deletions

View File

@ -43,7 +43,7 @@ int drm_object_create_properties(struct mp_log *log, int fd,
return 0;
fail:
fail:
drm_object_free_properties(object);
return -1;
}

View File

@ -583,7 +583,7 @@ static bool setup_crtc(struct vo_drm_state *drm, const drmModeRes *res)
drm->connector->connector_id);
return false;
success:
success:
MP_VERBOSE(drm, "Selected Encoder %u with CRTC %u\n",
drm->encoder->encoder_id, drm->crtc_id);
return true;

View File

@ -866,7 +866,7 @@ static int preinit(struct vo *vo)
"You should fix your graphics drivers, or not force the xv VO.\n");
return 0;
error:
error:
uninit(vo); // free resources
return -1;
}