fix: update liftoff log initialisation

Also: Update liftoff dependency to b08bbaa5e6331ed2
("Split liftoff_log_init into set_handler and set_priority")

The callback parameter was moved into a different method, though it is
not needed in this case as we didn't give it one before.
This commit is contained in:
Sefa Eyeoglu 2021-03-31 14:16:04 +02:00 committed by Simon Ser
parent 7dfb55c8a8
commit 774002483b
2 changed files with 2 additions and 2 deletions

View file

@ -539,7 +539,7 @@ int init_drm(struct drm_t *drm, const char *device, const char *mode_str, unsign
} }
if (g_bUseLayers) { if (g_bUseLayers) {
liftoff_log_init(g_bDebugLayers ? LIFTOFF_DEBUG : LIFTOFF_ERROR, NULL); liftoff_log_set_priority(g_bDebugLayers ? LIFTOFF_DEBUG : LIFTOFF_ERROR);
} }
drm->lo_device = liftoff_device_create( drm->fd ); drm->lo_device = liftoff_device_create( drm->fd );

@ -1 +1 @@
Subproject commit c9e42e3c149fa8db94c12f285ebf67c68e45549d Subproject commit b08bbaa5e6331ed273c4bbd867143bf776c18207