changeset 21830:cbd8cf0a8a5c

Fix psi input validation with --enable-64 * psi.cc: Fix error message validation regexp for --enable-64 build.
author Mike Miller <mtmiller@octave.org>
date Mon, 06 Jun 2016 11:22:17 -0700
parents d9fa4558d2ed
children 1077f09a0cfd
files libinterp/corefcn/psi.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/psi.cc	Fri Jun 03 11:34:34 2016 +0200
+++ b/libinterp/corefcn/psi.cc	Mon Jun 06 11:22:17 2016 -0700
@@ -222,7 +222,7 @@
 %!error psi ()
 %!error psi (1, 2, 3)
 %!error <Z must be> psi ("non numeric")
-%!error <conversion of 5.3 to int value failed> psi (5.3, 1)
+%!error <conversion of 5.3 to int.* value failed> psi (5.3, 1)
 %!error <K must be non-negative> psi (-5, 1)
 %!error <Z must be non-negative for polygamma> psi (5, -1)
 %!error <Z must be a floating point> psi (5, uint8 (-1))