Skip to content

Commit

Permalink
fix(rxtrace): Compile error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Nov 19, 2024
1 parent 214f9d1 commit 8ff8fae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rt/rxtrace.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef lint
static const char RCSid[] = "$Id: rxtrace.cpp,v 2.6 2024/11/19 16:28:18 greg Exp $";
static const char RCSid[] = "$Id: rxtrace.cpp,v 2.7 2024/11/19 16:29:44 greg Exp $";
#endif
/*
* C++ module for individual ray tracing.
Expand Down Expand Up @@ -413,7 +413,7 @@ setrtoutput(const char *outvals) /* set up output tables, return #comp */
return(ncomp);
}

static int
int
printvals( /* print requested ray values */
RAY *r, void *cd
)
Expand Down Expand Up @@ -768,7 +768,7 @@ putrgbe(RREAL *v, int n) /* output RGBE color */
putbinary(cout, sizeof(cout), 1, stdout);
}

static void
void
putscolor(COLORV *scol) /* output (spectral) color */
{
static COLORMAT xyz2myrgbmat;
Expand Down

0 comments on commit 8ff8fae

Please # to comment.