summaryrefslogtreecommitdiffstats
path: root/libdimension/sphere.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-11-30 15:59:43 -0500
committerTavian Barnes <tavianator@gmail.com>2010-11-30 15:59:43 -0500
commit4f40f29ade4a6b2c0b27ba902281718662cdde82 (patch)
treee09ba47066e6509575e636f2e694c6d5deaa5904 /libdimension/sphere.c
parentd5c774477b1d1cbbcc6a7daf00679bcb57193533 (diff)
downloaddimension-4f40f29ade4a6b2c0b27ba902281718662cdde82.tar.xz
Make some empty parameter lists explicit.
Diffstat (limited to 'libdimension/sphere.c')
-rw-r--r--libdimension/sphere.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdimension/sphere.c b/libdimension/sphere.c
index 53ceef9..fc9c103 100644
--- a/libdimension/sphere.c
+++ b/libdimension/sphere.c
@@ -62,7 +62,7 @@ dmnsn_sphere_inside_fn(const dmnsn_object *sphere, dmnsn_vector point)
/* Allocate a new sphere */
dmnsn_object *
-dmnsn_new_sphere()
+dmnsn_new_sphere(void)
{
dmnsn_object *sphere = dmnsn_new_object();
sphere->intersection_fn = &dmnsn_sphere_intersection_fn;