Commit 111d4ac9 authored by Roberto Susino's avatar Roberto Susino
Browse files

Fix error-code typo in interpol_param.pro routine

parent dd2ad81a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ function interpol_param, table, par_name, date, empty_params = empty_params
	if jul_date ge min(par_date) and jul_date le max(par_date) then value = interpol(float(par_val), par_date, jul_date) else begin
		journal, 'Error 02: insufficient number of parameter values in house-keeping table.'
		journal
		exit, status = 1
		exit, status = 2
	endelse
	if finite(value) then return, value else begin
	  	journal, 'Error 03: interpolation of HK parameter ' + par_name.trim() + ' failed.'