Remove return from void functions
This patch fixes compilation on suncc. http://bugzilla.openedhand.com/show_bug.cgi?id=1978 Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
This commit is contained in:

committed by
Emmanuele Bassi

parent
23717452bf
commit
2ecb6f7b20
@ -267,7 +267,7 @@ cogl_buffer_unmap_EXP (CoglHandle handle)
|
||||
if (!COGL_BUFFER_FLAG_IS_SET (buffer, MAPPED))
|
||||
return;
|
||||
|
||||
return buffer->vtable->unmap (buffer);
|
||||
buffer->vtable->unmap (buffer);
|
||||
}
|
||||
|
||||
gboolean
|
||||
|
Reference in New Issue
Block a user