mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
material: fix a typo in _cogl_material_journal_unref
The function had a line like: CoglMaterial *material = material = _cogl_material_pointer_from_handle (material_handle); where the duplicate "material =" wasn't intended, so this patch removes it.
This commit is contained in:
parent
c8aae9a663
commit
9234757c35
@ -7165,7 +7165,7 @@ void
|
|||||||
_cogl_material_journal_unref (CoglHandle material_handle)
|
_cogl_material_journal_unref (CoglHandle material_handle)
|
||||||
{
|
{
|
||||||
CoglMaterial *material =
|
CoglMaterial *material =
|
||||||
material = _cogl_material_pointer_from_handle (material_handle);
|
_cogl_material_pointer_from_handle (material_handle);
|
||||||
material->journal_ref_count--;
|
material->journal_ref_count--;
|
||||||
cogl_handle_unref (material_handle);
|
cogl_handle_unref (material_handle);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user