summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/posix_memalign.cc
diff options
context:
space:
mode:
authorMichael Dickens <mlk@alum.mit.edu>2014-06-17 14:21:53 -0400
committerTom Rondeau <tom@trondeau.com>2014-06-26 14:35:34 -0400
commit93aea30efd828373b9366ef97e1bb853d85d87e8 (patch)
tree986cf851458cc3fabb4580488ecbcedb930bd243 /gnuradio-runtime/lib/posix_memalign.cc
parent093314f01ffee01ca970df01e5ae48d173c08e47 (diff)
runtime: fix comment in posix_memalign.
Diffstat (limited to 'gnuradio-runtime/lib/posix_memalign.cc')
-rw-r--r--gnuradio-runtime/lib/posix_memalign.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/posix_memalign.cc b/gnuradio-runtime/lib/posix_memalign.cc
index f75b1d5f3f..eb3bbe3e0f 100644
--- a/gnuradio-runtime/lib/posix_memalign.cc
+++ b/gnuradio-runtime/lib/posix_memalign.cc
@@ -66,7 +66,7 @@ int posix_memalign
/* if 'malloc' is known to be aligned, and the desired 'alignment'
* matches is <= that provided by 'malloc', then use 'malloc'. This
- * works on, e.g., Darwin 8 & 9: for which malloc is 16-byte aligned.
+ * works on, e.g., Darwin for which malloc is 16-byte aligned.
*/
size_t am = (size_t) ALIGNED_MALLOC;
if (alignment <= am) {