From: andy Date: Mon, 15 Nov 2004 18:15:33 +0000 (+0000) Subject: Melchior caught a missing return value that is now an error on newer gcc versions X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d43d10046b4b97f03c1f9c29225901f7e1cc7074;p=flightgear.git Melchior caught a missing return value that is now an error on newer gcc versions --- diff --git a/src/Scripting/NasalSys.cxx b/src/Scripting/NasalSys.cxx index e8e0c676b..c7063647c 100644 --- a/src/Scripting/NasalSys.cxx +++ b/src/Scripting/NasalSys.cxx @@ -267,6 +267,8 @@ static naRef f_interpolate(naContext c, naRef args) ((SGInterpolator*)globals->get_subsystem("interpolator")) ->interpolate(node, nPoints, values, deltas); + + return naNil(); } static naRef f_rand(naContext c, naRef args)