gpu-kms: Return NULL, not FALSE

Another small mistake spotted while working on #77. This
function returns a pointer, thus we should return NULL,
not FALSE.

Issue: #77
This commit is contained in:
Georges Basile Stavracas Neto 2018-03-17 21:48:44 -03:00 committed by Jonas Ådahl
parent 773b8384fa
commit bc05e49eba

View File

@ -778,7 +778,7 @@ meta_gpu_kms_new (MetaMonitorManagerKms *monitor_manager_kms,
kms_fd = meta_launcher_open_restricted (launcher, kms_file_path, error);
if (kms_fd == -1)
return FALSE;
return NULL;
gpu_kms = g_object_new (META_TYPE_GPU_KMS,
"monitor-manager", monitor_manager_kms,