wayland: Use wl_resource_* error functions
authorKristian Høgsberg <krh@bitplanet.net>
Thu, 1 Sep 2011 13:54:10 +0000 (09:54 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 1 Sep 2011 13:54:10 +0000 (09:54 -0400)
src/egl/wayland/wayland-drm/wayland-drm.c

index 443744c..82ca6aa 100644 (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);
 }