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-10-20 22:46:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-20 22:46:57 +0400
commitbc8f602601ddbbadb30872eaa83ef5cf80fbe322 (patch)
tree39bc98b878e8ff286f891f06a6ecdcaff841225f /intern/smoke
parent3da4b08110c9929a7d939a2fa12913989370e6d2 (diff)
style cleanup
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/intern/spectrum.cpp2
-rw-r--r--intern/smoke/intern/spectrum.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/smoke/intern/spectrum.cpp b/intern/smoke/intern/spectrum.cpp
index 359f3ab73a9..30433451ac2 100644
--- a/intern/smoke/intern/spectrum.cpp
+++ b/intern/smoke/intern/spectrum.cpp
@@ -385,7 +385,7 @@ static void lms_to_xyz(double l, double m, double s, double* x, double *y, doubl
*z = s;
}
-void spectrum(double t1, double t2, int N, unsigned char* d)
+void spectrum(double t1, double t2, int N, unsigned char *d)
{
int i,j,dj;
double X,Y,Z,R,G,B,L,M,S, Lw, Mw, Sw;
diff --git a/intern/smoke/intern/spectrum.h b/intern/smoke/intern/spectrum.h
index 9edd9ad887c..3ffd41f9517 100644
--- a/intern/smoke/intern/spectrum.h
+++ b/intern/smoke/intern/spectrum.h
@@ -1,6 +1,6 @@
#ifndef __SPECTRUM_H
#define __SPECTRUM_H
-void spectrum(double t1, double t2, int n, unsigned char* d);
+void spectrum(double t1, double t2, int n, unsigned char *d);
#endif