staging: lustre: remove RETURN macro
[linux-2.6-block.git] / drivers / staging / lustre / lustre / ptlrpc / gss / gss_rawobj.c
index 474ecf805307eae0a2558aab0945974ca2ec2092..fb298aef66ebdfda4291fc67127576523b698b9c 100644 (file)
@@ -65,7 +65,7 @@ int rawobj_alloc(rawobj_t *obj, char *buf, int len)
                OBD_ALLOC_LARGE(obj->data, len);
                if (!obj->data) {
                        obj->len = 0;
-                       RETURN(-ENOMEM);
+                       return -ENOMEM;
                }
                memcpy(obj->data, buf, len);
        } else