diff vidix/vidix.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 42726ce8f60a
children 11106186d92c
line wrap: on
line diff
--- a/vidix/vidix.c	Tue May 12 19:25:35 2009 +0000
+++ b/vidix/vidix.c	Wed May 13 02:58:57 2009 +0000
@@ -54,7 +54,7 @@
 
   /* register all drivers */
   vidix_register_all_drivers ();
-  
+
   if (!vidix_find_driver (ctx, name, cap, verbose))
   {
     free (ctx);
@@ -71,7 +71,7 @@
     free (ctx);
     return NULL;
   }
-  
+
   if (verbose)
     printf ("vidixlib: Attempt to initialize driver at: %p\n",
             ctx->drv->init);
@@ -83,10 +83,10 @@
     free (ctx);
     return NULL;
   }
-  
+
   if (verbose)
     printf("vidixlib: '%s'successfully loaded\n", ctx->drv->name);
-  
+
   return ctx;
 }
 
@@ -94,7 +94,7 @@
 {
   if (ctx->drv->destroy)
     ctx->drv->destroy ();
-  
+
   memset (ctx, 0, sizeof (VDXContext)); /* <- it's not stupid */
   free (ctx);
 }