Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/imlib2

Dir     : e17/libs/imlib2/src


Modified Files:
        api.c 


Log Message:


dont return values if void return defined!

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/imlib2/src/api.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -3 -r1.97 -r1.98
--- api.c       27 Apr 2004 10:15:38 -0000      1.97
+++ api.c       28 Apr 2004 04:28:01 -0000      1.98
@@ -3372,13 +3372,13 @@
    if (!ctx)
       ctx = imlib_context_new();
    // source image (to rotate)
-   CHECK_PARAM_POINTER_RETURN("imlib_rotate_image_from_buffer", "source_image",
-                              source_image, NULL);
+   CHECK_PARAM_POINTER("imlib_rotate_image_from_buffer", "source_image",
+                      source_image);
    CAST_IMAGE(im_old, source_image);
 
    // current context image
-   CHECK_PARAM_POINTER_RETURN("imlib_rotate_image_from_buffer", "image",
-                              ctx->image, NULL);
+   CHECK_PARAM_POINTER("imlib_rotate_image_from_buffer", "image",
+                      ctx->image);
    CAST_IMAGE(im, ctx->image);
 
    if ((!(im_old->data)) && (im_old->loader) && (im_old->loader->load))




-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to