From ace98f30e8820a95728b41131ec0f5f5556ae214 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Wed, 24 Apr 2013 21:47:15 -0400 Subject: [PATCH] added an article to the NaN error report text --- pd/src/x_arithmetic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pd/src/x_arithmetic.c b/pd/src/x_arithmetic.c index 92c2968e4..da8bd9303 100644 --- a/pd/src/x_arithmetic.c +++ b/pd/src/x_arithmetic.c @@ -163,7 +163,7 @@ static void binop1_pow_bang(t_binop *x) outlet_float(x->x_obj.ob_outlet, powf(x->x_f1, x->x_f2)); else { - pd_error(x, "pow: calculation resulted in NaN"); + pd_error(x, "pow: calculation resulted in a NaN"); outlet_float(x->x_obj.ob_outlet, 0); } } @@ -178,7 +178,7 @@ static void binop1_pow_float(t_binop *x, t_float f) outlet_float(x->x_obj.ob_outlet, powf(x->x_f1, x->x_f2)); else { - pd_error(x, "pow: calculation resulted in NaN"); + pd_error(x, "pow: calculation resulted in a NaN"); outlet_float(x->x_obj.ob_outlet, 0); } } -- GitLab