wayland: Use wl_resource_* error functions

This commit is contained in:
Kristian Høgsberg 2011-09-01 09:54:10 -04:00
parent 11f64668a9
commit 64332917c9
1 changed files with 10 additions and 10 deletions

View File

@ -95,15 +95,15 @@ drm_create_buffer(struct wl_client *client, struct wl_resource *resource,
case WL_DRM_FORMAT_XRGB32:
break;
default:
wl_client_post_error(client, &resource->object,
WL_DRM_ERROR_INVALID_FORMAT,
"invalid format");
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_FORMAT,
"invalid format");
return;
}
buffer = calloc(1, sizeof *buffer);
if (buffer == NULL) {
wl_client_post_no_memory(resource->client);
wl_resource_post_no_memory(resource);
return;
}
@ -118,9 +118,9 @@ drm_create_buffer(struct wl_client *client, struct wl_resource *resource,
stride, format);
if (buffer->driver_buffer == NULL) {
wl_client_post_error(client, &resource->object,
WL_DRM_ERROR_INVALID_NAME,
"invalid name");
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_NAME,
"invalid name");
return;
}
@ -143,9 +143,9 @@ drm_authenticate(struct wl_client *client,
struct wl_drm *drm = resource->data;
if (drm->callbacks->authenticate(drm->user_data, id) < 0)
wl_client_post_error(client, &resource->object,
WL_DRM_ERROR_AUTHENTICATE_FAIL,
"authenicate failed");
wl_resource_post_error(resource,
WL_DRM_ERROR_AUTHENTICATE_FAIL,
"authenicate failed");
else
wl_resource_post_event(resource, WL_DRM_AUTHENTICATED);
}