On Tue, 2006-02-14 at 20:09 +1100, Bojan Smojver wrote:

> if (col < 0)
>   get_name(get_result_from_row(row), -col - 1);

This should be, of course:

return get_name(get_result_from_row(row), -col - 1);

-- 
Bojan

Reply via email to