Revision: 56620
          http://sourceforge.net/p/brlcad/code/56620
Author:   mohitdaga
Date:     2013-08-06 13:46:10 +0000 (Tue, 06 Aug 2013)
Log Message:
-----------
Add proper spacing in declaration of the variables.

Modified Paths:
--------------
    brlcad/trunk/src/libicv/color_space.c
    brlcad/trunk/src/libicv/decimate.c

Modified: brlcad/trunk/src/libicv/color_space.c
===================================================================
--- brlcad/trunk/src/libicv/color_space.c       2013-08-06 13:11:23 UTC (rev 
56619)
+++ brlcad/trunk/src/libicv/color_space.c       2013-08-06 13:46:10 UTC (rev 
56620)
@@ -35,7 +35,7 @@
 int
 icv_gray2rgb(icv_image_t *img)
 {
-    double *out_data,*op;
+    double *out_data, *op;
     double *in_data;
     long int size;
     long int i = 0;

Modified: brlcad/trunk/src/libicv/decimate.c
===================================================================
--- brlcad/trunk/src/libicv/decimate.c  2013-08-06 13:11:23 UTC (rev 56619)
+++ brlcad/trunk/src/libicv/decimate.c  2013-08-06 13:46:10 UTC (rev 56620)
@@ -32,7 +32,7 @@
 {
     double *data_p, *res_p; /**< input and output pointers */
     double *p;
-    int facsq,x,y,py,px,c;
+    int facsq, x, y, py, px, c;
     size_t widthstep =  bif->width*bif->channels;
 
     facsq = factor*factor;
@@ -70,7 +70,7 @@
 HIDDEN void under_sample(icv_image_t* bif, int factor)
 {
     double *data_p, *res_p;
-    int x,y,widthstep;
+    int x, y, widthstep;
 
     widthstep = bif->width*bif->channels;
 
@@ -92,8 +92,8 @@
 HIDDEN void nintrep(icv_image_t* bif, int out_width, int out_height)
 {
     double xstep, ystep;
-    int i,j;
-    int x,y;
+    int i, j;
+    int x, y;
     int widthstep;
     double *in_r, *in_c; /*<< Pointer to row and col of input buffers*/
     double *out_data, *out_p;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to