Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-04-21 17:37:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-21 17:37:26 +0400
commit1615b46963f79e90621c155a5d85925a4b5171a3 (patch)
treef029c9dc35c645b9f622f82a8e761a18c033c208 /source/blender/imbuf
parentd02aed6c6474eafbcc312156d1debfccb230a00f (diff)
style cleanup
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/bmp.c2
-rw-r--r--source/blender/imbuf/intern/jp2.c4
-rw-r--r--source/blender/imbuf/intern/png.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/bmp.c b/source/blender/imbuf/intern/bmp.c
index 768aa518742..06e1d75c5d0 100644
--- a/source/blender/imbuf/intern/bmp.c
+++ b/source/blender/imbuf/intern/bmp.c
@@ -44,7 +44,7 @@
* http://www.microsoft.com/msj/defaultframe.asp?page=/msj/0197/mfcp1/mfcp1.htm&nav=/msj/0197/newnav.htm
*/
-typedef struct BMPINFOHEADER{
+typedef struct BMPINFOHEADER {
unsigned int biSize;
unsigned int biWidth;
unsigned int biHeight;
diff --git a/source/blender/imbuf/intern/jp2.c b/source/blender/imbuf/intern/jp2.c
index 275d19d518c..749d46d3a98 100644
--- a/source/blender/imbuf/intern/jp2.c
+++ b/source/blender/imbuf/intern/jp2.c
@@ -43,7 +43,7 @@
static char JP2_HEAD[]= {0x0, 0x0, 0x0, 0x0C, 0x6A, 0x50, 0x20, 0x20, 0x0D, 0x0A, 0x87, 0x0A};
/* We only need this because of how the presets are set */
-typedef struct img_folder{
+typedef struct img_folder {
/** The directory path of the folder containing input images*/
char *imgdirpath;
/** Output format*/
@@ -54,7 +54,7 @@ typedef struct img_folder{
char set_out_format;
/** User specified rate stored in case of cinema option*/
float *rates;
-}img_fol_t;
+} img_fol_t;
static int check_jp2(unsigned char *mem) /* J2K_CFMT */
{
diff --git a/source/blender/imbuf/intern/png.c b/source/blender/imbuf/intern/png.c
index de935c7cc42..74e1a4084c2 100644
--- a/source/blender/imbuf/intern/png.c
+++ b/source/blender/imbuf/intern/png.c
@@ -49,7 +49,7 @@ typedef struct PNGReadStruct {
unsigned char *data;
unsigned int size;
unsigned int seek;
-}PNGReadStruct;
+} PNGReadStruct;
static void ReadData( png_structp png_ptr, png_bytep data, png_size_t length);
static void WriteData( png_structp png_ptr, png_bytep data, png_size_t length);