wl_desktop_shell: return void

Summary:
_e_input_panel_cb_surface_get() returns void.

Signed-off-by: Boram Park <boram1288.park@samsung.com>

Reviewers: zmike, stefan_schmidt, gwanglim, raster, devilhorns

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D3119
This commit is contained in:
Boram Park 2015-10-01 08:43:19 -04:00 committed by Chris Michael
parent bb5daf2b57
commit 00a597213d
1 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ _e_input_panel_cb_surface_get(struct wl_client *client, struct wl_resource *reso
if (!ips)
{
wl_client_post_no_memory(client);
return NULL;
return;
}
cd->shell.surface = wl_resource_create(client,
@ -212,7 +212,7 @@ _e_input_panel_cb_surface_get(struct wl_client *client, struct wl_resource *reso
{
wl_client_post_no_memory(client);
free(ips);
return NULL;
return;
}
ips->ec = ec;