summaryrefslogtreecommitdiffstats
path: root/libdimension/lambertian.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-05-06 21:23:55 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-05-06 21:26:35 -0400
commitef98e35c9c44148611aa2c23325431d19405c781 (patch)
tree885b5485c115be24d74713b2af9e61357fcc9039 /libdimension/lambertian.c
parentb9ffc8ca0a2f130a869ba780eeea6787760e860a (diff)
downloaddimension-ef98e35c9c44148611aa2c23325431d19405c781.tar.xz
malloc: New DMNSN_MALLOC() macro to save a sizeof().
Diffstat (limited to 'libdimension/lambertian.c')
-rw-r--r--libdimension/lambertian.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/lambertian.c b/libdimension/lambertian.c
index 16dc910..17bed6d 100644
--- a/libdimension/lambertian.c
+++ b/libdimension/lambertian.c
@@ -1,5 +1,5 @@
/*************************************************************************
- * Copyright (C) 2010-2011 Tavian Barnes <tavianator@tavianator.com> *
+ * Copyright (C) 2010-2014 Tavian Barnes <tavianator@tavianator.com> *
* *
* This file is part of The Dimension Library. *
* *
@@ -43,7 +43,7 @@ dmnsn_new_lambertian(double diffuse)
{
dmnsn_diffuse *lambertian = dmnsn_new_diffuse();
- double *param = dmnsn_malloc(sizeof(double));
+ double *param = DMNSN_MALLOC(double);
*param = diffuse;
lambertian->diffuse_fn = dmnsn_lambertian_diffuse_fn;